Skip to content

Commit ef8c89e

Browse files
committed
test message
1 parent f0b03c8 commit ef8c89e

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/node12-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
yarn add jest@27 --dev
5757
5858
- name: Run unit tests
59-
run: yarn test:unit
59+
run: yarn test
6060

6161
- name: Upload test results
6262
if: always()

.github/workflows/node14-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
yarn add jest@29 --dev
5757
5858
- name: Run unit tests
59-
run: yarn test:unit
59+
run: yarn test
6060

6161
- name: Upload test results
6262
if: always()

.github/workflows/node16-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@ jobs:
5050

5151
- name: Install dependencies
5252
run: |
53+
# Install specific Jest version that's compatible with Node.js 16
5354
yarn add jest@29.5.0 ts-jest@29.1.0 @types/jest@29.5.0 --dev
55+
# Install without considering yarn.lock to ensure our custom Jest version is actually used
5456
yarn install --no-lockfile
57+
5558
- name: Run unit tests
56-
run: yarn test:unit
59+
run: yarn test
5760

5861
- name: Upload test results
5962
if: always()

0 commit comments

Comments
 (0)