We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5986ca commit ffeb582Copy full SHA for ffeb582
.github/workflows/node-windows.yml
@@ -19,6 +19,9 @@ jobs:
19
uses: actions/setup-node@v1
20
with:
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
25
- name: yarn install
26
run: yarn install
27
- name: run tests
.travis.yml
@@ -26,11 +26,15 @@ matrix:
- rm yarn.lock
- yarn
28
- os: linux
29
- node_js: "10"
+ node_js: "14"
30
env: JOB_PART=travis:lint
31
32
node_js: "10"
33
env: JOB_PART=test
34
35
+ install:
36
+ - rm yarn.lock
37
+ - yarn
38
39
node_js: "12"
40
0 commit comments