We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a405787 commit 0c7bb4bCopy full SHA for 0c7bb4b
.github/workflows/pull-request.yml
@@ -24,12 +24,14 @@ jobs:
24
uses: actions/setup-node@v3
25
with:
26
node-version: 20.13.1
27
+ cache: 'yarn'
28
+ yarn-version: '4.5.0'
29
30
- name: Clean yarn cache
31
run: yarn cache clean
32
33
- name: Initialize dependencies
- run: yarn install
34
+ run: yarn install --frozen-lockfile
35
36
- name: Cache Dependencies
37
uses: actions/cache@v3
@@ -66,7 +68,7 @@ jobs:
66
68
env:
67
69
JEST_JUNIT_OUTPUT_NAME: js-jest-results.xml
70
JEST_JUNIT_OUTPUT_DIR: reports/junit/jest
- run: yarn run jest --reporters="jest-junit"
71
+ run: yarn workspaces foreach -A run test:unit
72
73
- name: Upload Jest test results
74
uses: actions/upload-artifact@v3
0 commit comments