We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3994528 commit c209e55Copy full SHA for c209e55
1 file changed
.github/workflows/test.yml
@@ -20,8 +20,14 @@ jobs:
20
with:
21
node-version: ${{ matrix.node-version }}
22
23
- - name: Install dependencies and build (with cache)
24
- uses: bahmutov/npm-install@v1
+ - name: Cache Dependencies
+ uses: actions/cache@v2
25
+ with:
26
+ path: ./node_modules
27
+ key: ${{ runner.os }}-${{ matrix.node }}-modules-${{ hashFiles('**/yarn.lock') }}
28
+
29
+ - name: Install Dependencies & Build
30
+ run: yarn install --frozen-lockfile
31
32
- name: Lint
33
run: yarn lint
0 commit comments