Skip to content

Commit

Permalink
feat: Add CI typecheck/test runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Oct 2, 2024
1 parent 00a4bac commit 217536a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
pull:
push:
branches:
- main

name: checks

jobs:
checks:
strategy:
matrix:
command: [typecheck, test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run ${{ matrix.command }}

0 comments on commit 217536a

Please sign in to comment.