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 ce6c1af commit 167afc1Copy full SHA for 167afc1
.github/actions/yarn/action.yml
@@ -8,11 +8,7 @@ runs:
8
uses: actions/setup-node@v4
9
with:
10
node-version-file: .nvmrc
11
- - uses: actions/cache@v4
12
- with:
13
- path: |
14
- **/node_modules
15
- key: v1-yarn-${{ runner.os }}-${{ hashFiles('.nvmrc') }}-${{ hashFiles('**/yarn.lock') }}
16
- - name: Install Dependencies If Not Cached
17
- run: \[ -d node_modules \] || yarn install --immutable
+ cache: 'yarn'
+ - name: Install Dependencies
+ run: yarn install --immutable
18
shell: bash
0 commit comments