Skip to content

Next

Next #32

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: npm ci
- name: Dependencies audit
run: npm audit --audit-level=moderate --only=prod
- name: Build
run: npm run build
- name: Format check
run: npm run format:check
- name: Lint check
run: npm run lint:check
- name: Spell check
run: npm run spell:check
- name: Test
run: npm run test