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 30c85a4 commit 3380a92Copy full SHA for 3380a92
‎.github/workflows/run-tests.yml‎
@@ -11,13 +11,15 @@ jobs:
11
CI: true
12
steps:
13
- uses: actions/checkout@v4
14
+ - name: Enable corepack
15
+ run: corepack enable
16
- uses: actions/setup-node@v4
17
with:
- node-version: '22.x'
- cache: 'yarn'
18
- cache-dependency-path: 'tests/yarn.lock'
+ node-version: "22.x"
19
+ cache: "yarn"
20
+ cache-dependency-path: "tests/yarn.lock"
21
- name: install dependencies
- run: yarn --frozen-lockfile
22
+ run: yarn --immutable
23
working-directory: tests
24
- name: test
25
run: yarn test
0 commit comments