We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0358dec commit 64be5f5Copy full SHA for 64be5f5
.github/workflows/test.yml
@@ -21,7 +21,16 @@ jobs:
21
uses: actions/setup-node@v1
22
with:
23
node-version: ${{ matrix.node }}
24
+ - name: Cache dependencies
25
+ id: cache
26
+ uses: actions/cache@v2
27
+ with:
28
+ path: |
29
+ node_modules
30
+ */*/node_modules
31
+ key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', './yarn.lock') }}
32
- name: Install packages
- run: yarn --no-progress --non-interactive --no-lockfile
33
+ if: steps.cache.outputs.cache-hit != 'true'
34
+ run: yarn --frozen-lockfile --prefer-offline
35
- name: Run integration tests
36
run: yarn test:integration
0 commit comments