Skip to content

Commit 99906d7

Browse files
committed
UTs yaml change.
1 parent 9571fee commit 99906d7

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/RunUnitTests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,16 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v2
2626

27+
- name: Setup Node.js
28+
uses: actions/setup-node@v2
29+
with:
30+
node-version: '20'
31+
2732
- name: Installing dependencies and building latest changes
2833
run: |
29-
npm install -f
34+
npm install --include=dev -f
3035
3136
- name: Run Unit Tests
3237
run: |
33-
npm run test
38+
npm ci
39+
npx jest --testPathPattern=test --coverage

0 commit comments

Comments
 (0)