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 fc8ac23 commit 11e78dcCopy full SHA for 11e78dc
.github/workflows/release-build.yml
@@ -25,18 +25,10 @@ jobs:
25
with:
26
node-version: 20.x
27
registry-url: https://registry.npmjs.org
28
-
29
- - name: Save yarn cache location to env
30
- run: echo "YARN_CACHE=$(yarn cache dir)" >> $GITHUB_ENV
31
32
- - name: Cache node_modules
33
- uses: actions/cache@v3
34
- with:
35
- path: ${{ env.YARN_CACHE }}
36
- key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock', '**/package-lock.json') }}
+ cache: yarn
37
38
- name: Install dependencies
39
- run: yarn install
+ run: yarn install --frozen-lockfile
40
41
- name: Run linter
42
run: yarn lint
0 commit comments