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 234d0fb commit c4a37ffCopy full SHA for c4a37ff
.github/workflows/nodejs.yml
@@ -26,10 +26,11 @@ jobs:
26
uses: actions/setup-node@v2
27
with:
28
node-version: ${{ matrix.node-version }}
29
+ cache: yarn
30
- name: install with jest v${{ matrix.jest-version }}
31
run: |
32
yarn add --dev jest@${{ matrix.jest-version }} babel-jest@${{ matrix.jest-version }}
- yarn
33
+ yarn --force
34
- name: run tests
35
run: yarn test
36
test-os:
@@ -45,7 +46,8 @@ jobs:
45
46
- uses: actions/setup-node@v2
47
48
node-version: lts/*
49
+ cache: yarn --force
50
- name: install
- run: yarn
51
+ run: yarn --force
52
53
0 commit comments