File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,18 +55,17 @@ jobs:
5555 node :
5656 runs-on : ubuntu-latest
5757
58- strategy :
59- matrix :
60- node-version : [12.x]
61-
62- name : eslint node${{ matrix.node-version }}
58+ name : eslint node
6359 steps :
6460 - uses : actions/checkout@v2
6561
66- - name : Set up node ${{ matrix.node-version }}
67- uses : actions/setup-node@v1
62+ - name : Set up node
63+ uses : actions/setup-node@v2
6864 with :
69- node-version : ${{ matrix.node-version }}
65+ node-version : 14
66+
67+ - name : Set up npm7
68+ run : npm i -g npm@7
7069
7170 - name : Install dependencies
7271 run : npm ci
@@ -77,18 +76,17 @@ jobs:
7776 stylelint :
7877 runs-on : ubuntu-latest
7978
80- strategy :
81- matrix :
82- node-version : [12.x]
83-
84- name : stylelint node${{ matrix.node-version }}
79+ name : stylelint node
8580 steps :
8681 - uses : actions/checkout@v2
8782
88- - name : Set up node ${{ matrix.node-version }}
89- uses : actions/setup-node@v1
83+ - name : Set up node
84+ uses : actions/setup-node@v2
9085 with :
91- node-version : ${{ matrix.node-version }}
86+ node-version : 14
87+
88+ - name : Set up npm7
89+ run : npm i -g npm@7
9290
9391 - name : Install dependencies
9492 run : npm ci
Original file line number Diff line number Diff line change @@ -11,18 +11,17 @@ jobs:
1111 build :
1212 runs-on : ubuntu-latest
1313
14- strategy :
15- matrix :
16- node-version : [12.x]
17-
18- name : node${{ matrix.node-version }}
14+ name : node
1915 steps :
2016 - uses : actions/checkout@v2
2117
22- - name : Set up node ${{ matrix.node-version }}
23- uses : actions/setup-node@v1
18+ - name : Set up node
19+ uses : actions/setup-node@v2
2420 with :
25- node-version : ${{ matrix.node-version }}
21+ node-version : 14
22+
23+ - name : Set up npm7
24+ run : npm i -g npm@7
2625
2726 - name : Install dependencies & build
2827 run : |
You can’t perform that action at this time.
0 commit comments