Skip to content

Remove makerbox links and update links to AO documentation #93

Remove makerbox links and update links to AO documentation

Remove makerbox links and update links to AO documentation #93

Workflow file for this run

name: Build, lint, and test
on:
pull_request:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm run check-versions
- run: npm ci
- run: npm -ws run build
- run: npm -ws run lint
- run: npm -ws run test