Skip to content

Commit 0ac3dd5

Browse files
authored
Enabling unit tests for CI (#44)
1 parent 733e236 commit 0ac3dd5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/code-qa.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,21 @@ jobs:
2525

2626
- name: Compile TypeScript
2727
run: npm run compile
28+
29+
unit-test:
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout code
33+
uses: actions/checkout@v4
34+
35+
- name: Setup Node.js
36+
uses: actions/setup-node@v4
37+
with:
38+
node-version: '18'
39+
cache: 'npm'
40+
41+
- name: Install dependencies
42+
run: npm run install:all
43+
44+
- name: Run unit tests
45+
run: npx jest

0 commit comments

Comments
 (0)