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 3e0abb1 commit 414a33eCopy full SHA for 414a33e
.github/workflows/nodejs.yml
@@ -67,12 +67,23 @@ jobs:
67
with:
68
node-version: ${{ matrix.node-version }}
69
70
+ - name: Restore lerna cache
71
+ id: cache
72
+ uses: actions/cache@v2
73
+ with:
74
+ path: |
75
+ node_modules
76
+ */*/node_modules
77
+ key: ${{ runner.os }}-${{ matrix.webpack-version }}-${{ hashFiles('**/yarn.lock') }}
78
+
79
- name: Install dependencies
80
+ if: steps.cache.outputs.cache-hit != 'true'
81
run: |
82
yarn
83
yarn bootstrap
84
85
- name: Install webpack ${{ matrix.webpack-version }}
86
87
run: yarn add -W webpack@${{ matrix.webpack-version }}
88
89
- name: Build
0 commit comments