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 2500f1e commit 7333d79Copy full SHA for 7333d79
.github/workflows/build.yml
@@ -22,8 +22,10 @@ jobs:
22
node-version: ${{ matrix.node-version }}
23
- name: Cache node_modules
24
uses: actions/cache@v2
25
+ env:
26
+ cache-name: cache-node-modules
27
with:
- path: '**/node_modules'
- key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
28
+ path: node_modules
29
+ key: ${{ runner.os }}-${{ env.cache-name }}-
30
- name: Before deploy
31
run: npm run docs
0 commit comments