File tree Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,21 @@ jobs:
12
12
13
13
steps :
14
14
- name : Checkout repo
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
16
16
17
17
- name : Use Node ${{ matrix.node }}
18
- uses : actions/setup-node@v1
18
+ uses : actions/setup-node@v3
19
19
with :
20
+ cache : ' yarn'
21
+ cache-dependency-path : ' yarn.lock'
20
22
node-version : ${{ matrix.node }}
21
-
22
- - name : Install deps and build (with cache)
23
- uses : bahmutov/npm-install@v1
23
+ - run : yarn install --frozen-lockfile
24
24
25
25
- name : Lint
26
26
run : yarn lint
27
27
28
28
- name : Test
29
- run : yarn test --ci --coverage -- maxWorkers=2
29
+ run : yarn test --ci --maxWorkers=1
30
30
31
31
- name : Upload coverage to Codecov
32
32
uses : codecov/codecov-action@v4
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments