Skip to content

Commit a19d0d3

Browse files
committed
Add check job
1 parent 8a31900 commit a19d0d3

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,21 @@ name: Test
33
on: [push]
44

55
jobs:
6-
build:
6+
check:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
- run: npm ci
13+
- run: npm run lint
14+
- run: npm run build
15+
- run: |
16+
npm run compile
17+
git diff --exit-code
18+
19+
test:
20+
needs: check
721
strategy:
822
matrix:
923
os:

0 commit comments

Comments
 (0)