21 lines
518 B
YAML
21 lines
518 B
YAML
|
version: ~> 1.0
|
||
|
language: node_js
|
||
|
os:
|
||
|
- linux
|
||
|
import:
|
||
|
- ljharb/travis-ci:node/minors/gte_4.yml
|
||
|
- ljharb/travis-ci:node/pretest.yml
|
||
|
- ljharb/travis-ci:node/posttest.yml
|
||
|
script:
|
||
|
- 'if [ -n "${ES5-}" ]; then npm run tests:es5 ; fi'
|
||
|
- 'if [ -n "${NATIVE-}" ]; then npm run test:native ; fi'
|
||
|
matrix:
|
||
|
include:
|
||
|
- node_js: "0.10"
|
||
|
env: ES5=true
|
||
|
- node_js: "12"
|
||
|
env: NATIVE=true ALLOW_FAILURE=true
|
||
|
allow_failures:
|
||
|
- env: TEST=true ALLOW_FAILURE=true
|
||
|
- env: NATIVE=true ALLOW_FAILURE=true
|