File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 19
19
uses : actions/setup-node@v1
20
20
with :
21
21
node-version : ${{ matrix.node }}
22
+ # needed so that Node 10 downloads a compatible less-loader version
23
+ - name : Clear lock file
24
+ run : del yarn.lock
22
25
- name : yarn install
23
- run : yarn install
26
+ run : yarn --ignore-engines
24
27
- name : run tests
25
28
run : yarn test
Original file line number Diff line number Diff line change @@ -26,11 +26,15 @@ matrix:
26
26
- rm yarn.lock
27
27
- yarn
28
28
- os : linux
29
- node_js : " 10 "
29
+ node_js : " 14 "
30
30
env : JOB_PART=travis:lint
31
31
- os : linux
32
32
node_js : " 10"
33
33
env : JOB_PART=test
34
+ # needed so that Node 10 downloads a compatible less-loader version
35
+ install :
36
+ - rm yarn.lock
37
+ - yarn --ignore-engines
34
38
- os : linux
35
39
node_js : " 12"
36
40
env : JOB_PART=test
You can’t perform that action at this time.
0 commit comments