Skip to content

ci: checkout submodule #16

ci: checkout submodule

ci: checkout submodule #16

Workflow file for this run

on:
push:
branches:
- main
pull_request:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
npm-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci --force # needed for react-hook-form to play nicely with newer react versions
- run: npm test
- run: npm run lint