We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c6d1bf commit 2316189Copy full SHA for 2316189
.github/workflows/ci-test.yml
@@ -51,7 +51,7 @@ jobs:
51
yarn config set -H enableImmutableInstalls false
52
yarn install
53
- name: Install dependencies
54
- run: yarn install --dev
+ run: yarn install
55
- name: Run syntax linter
56
run: yarn cs
57
@@ -77,8 +77,13 @@ jobs:
77
key: ${{ runner.os }}-node-v${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
78
restore-keys: |
79
${{ runner.os }}-node-v${{ matrix.node-version }}-
80
+ - name: Update yarn
81
+ run: |
82
+ corepack enable
83
+ yarn config set -H enableImmutableInstalls false
84
+ yarn install
85
86
87
- name: Run unit tests
88
run: yarn test:unit
89
0 commit comments