Skip to content

Commit

Permalink
Add check step
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Oct 24, 2024
1 parent e31c5df commit fb17f80
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,22 @@ name: Test
on: [push]

jobs:
build:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint
- run: npm run build
- run: |
npm run compile
git diff --exit-code
test:
needs: check

strategy:
matrix:
os:
Expand Down

0 comments on commit fb17f80

Please sign in to comment.