Skip to content

Merge pull request #50 from omgaz/fix-ci-cd-pt-2 #6

Merge pull request #50 from omgaz/fix-ci-cd-pt-2

Merge pull request #50 from omgaz/fix-ci-cd-pt-2 #6

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run check-types
- name: Test
run: npm run test:terse