loopback-datasource-juggler/.travis.yml

32 lines
492 B
YAML
Raw Normal View History

branches:
only:
- master
arch:
- arm64
- ppc64le
- s390x
dist: bionic
2013-11-08 17:14:25 +00:00
language: node_js
before_install: |
NODEJS_VERSION=$(node --version)
if [ 'v10' = ${NODEJS_VERSION%%.*} ]
then
npm install --global npm@7
else
npm install --global npm@8
fi
script:
- npm run --ignore-scripts build
- |
if [ 'v10' = "${NODEJS_VERSION%%.*}" ]; then
npm run-script test:v8:ci
else
npm run-script test:ci
fi
2013-11-08 17:14:25 +00:00
node_js:
- 10
- 12
- 14
- 16
- 17