File tree Expand file tree Collapse file tree 1 file changed +8
-20
lines changed Expand file tree Collapse file tree 1 file changed +8
-20
lines changed Original file line number Diff line number Diff line change 88 build :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v2
11+ - uses : actions/checkout@v3
1212 - name : Setup Node
13- uses : actions/setup-node@v2
13+ uses : actions/setup-node@v3
1414 with :
15- node-version : 17
16- - name : Cache Yarn
17- uses : actions/cache@v2
18- with :
19- path : ' **/node_modules'
20- key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
21- restore-keys : |
22- ${{ runner.os }}-yarn-
15+ node-version : current
16+ cache : ' yarn'
2317 - run : yarn install --frozen-lockfile
2418 - run : yarn test
2519 env :
2620 CI : true
2721 eslint :
2822 runs-on : ubuntu-latest
2923 steps :
30- - uses : actions/checkout@v2
24+ - uses : actions/checkout@v3
3125 - name : Setup Node
32- uses : actions/setup-node@v2
33- with :
34- node-version : 17
35- - name : Cache Yarn
36- uses : actions/cache@v2
26+ uses : actions/setup-node@v3
3727 with :
38- path : ' **/node_modules'
39- key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
40- restore-keys : |
41- ${{ runner.os }}-yarn-
28+ node-version : current
29+ cache : ' yarn'
4230 - run : yarn install --frozen-lockfile
4331 - run : yarn lint-fix
4432 - run : yarn prettier
You can’t perform that action at this time.
0 commit comments