explorer: downgrade nodejs version in travis (#16740)
This commit is contained in:
parent
26fa71a7c1
commit
517a30e83d
|
@ -73,7 +73,7 @@ jobs:
|
||||||
|
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "node"
|
- "lts/*"
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
|
|
||||||
|
# "node" (v16) is not supported by node-sass yet
|
||||||
|
# https://github.com/sass/node-sass/pull/3090
|
||||||
node_js:
|
node_js:
|
||||||
- "node"
|
- "lts/*"
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- npm run build
|
- npm run build
|
||||||
- npm run test
|
- npm run test
|
||||||
|
|
Loading…
Reference in New Issue