Skip to content

Commit 3f828d7

Browse files
authored
ci(test): run lint and tsc in CI (#291)
1 parent 865e6ca commit 3f828d7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,12 @@ jobs:
3131
steps:
3232
- run: exit 1
3333
if: ${{ needs.test_matrix.result != 'success' }}
34-
- run: echo ok
34+
- uses: actions/checkout@v4
35+
- uses: actions/setup-node@v4
36+
with:
37+
node-version: lts/*
38+
cache: npm
39+
- run: npm ci
40+
- run: npm run lint
41+
- run: npm run build
3542
if: ${{ always() }}

0 commit comments

Comments
 (0)