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 e45284c commit 531bd61Copy full SHA for 531bd61
1 file changed
.github/workflows/build.yml
@@ -22,10 +22,12 @@ jobs:
22
node-version: ${{ matrix.node-version }}
23
- uses: actions/cache@v4
24
with:
25
- path: ~/.npm
26
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ path: |
+ ~/.cache/yarn
27
+ **/node_modules
28
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
29
restore-keys: |
- ${{ runner.os }}-node-
30
+ ${{ runner.os }}-yarn-
31
- name: Set output
32
id: vars
33
run: echo name=tag::${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT
0 commit comments