File tree Expand file tree Collapse file tree 2 files changed +8
-16
lines changed Expand file tree Collapse file tree 2 files changed +8
-16
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
lint :
22
- name : ' Lint on Node.js ${{ matrix.node }} OS: ${{matrix.os}}'
23
- runs-on : ${{ matrix.os }}
24
- strategy :
25
- matrix :
26
- os : [ubuntu-latest]
27
- node : [14]
22
+ name : ' Lint'
23
+ runs-on : ubuntu-latest
28
24
steps :
29
25
- name : Checkout
30
26
uses : actions/checkout@v2
31
- - name : Setup Node.js ${{ matrix.node }}
27
+ - name : Setup Node.js v14.x
32
28
uses : actions/setup-node@v2
33
29
with :
34
- node-version : ${{ matrix.node }}
30
+ node-version : 14
35
31
cache : ' yarn'
36
32
- name : Install
37
33
run : yarn install
Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
size :
17
- name : ' Size check on Node.js ${{ matrix.node }} OS: ${{matrix.os}} '
18
- runs-on : ${{ matrix.os }}
17
+ name : ' Size check'
18
+ runs-on : ubuntu-latest
19
19
env :
20
20
CI_JOB_NUMBER : 1
21
- strategy :
22
- matrix :
23
- os : [ubuntu-latest]
24
- node : [14]
25
21
steps :
26
22
- name : Checkout
27
23
uses : actions/checkout@v2
28
- - name : Setup Node.js ${{ matrix.node }}
24
+ - name : Setup Node.js v16.x
29
25
uses : actions/setup-node@v2
30
26
with :
31
- node-version : ${{ matrix.node }}
27
+ node-version : 16
32
28
cache : ' yarn'
33
29
- name : Install
34
30
run : yarn install
You can’t perform that action at this time.
0 commit comments