Skip to content

Commit 1a05d0e

Browse files
committed
feat: add npm test step to CI and release workflows
1 parent 5fca843 commit 1a05d0e

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ jobs:
1818
- run: npm ci
1919
- run: npm run build
2020
- run: npm run typecheck
21+
- run: npm test

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- name: Typecheck
3232
run: npm run typecheck
3333

34+
- name: Test
35+
run: npm test
36+
3437
- name: Get version
3538
id: version
3639
run: echo "version=v$(node -p 'require("./package.json").version')" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)