Skip to content

Commit

Permalink
Add check job
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Oct 24, 2024
1 parent 8a31900 commit a19d0d3
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,21 @@ 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 a19d0d3

Please sign in to comment.