debian-image-builder-frontend/.travis.yml
Tom Gundersen 46fbb53e46 travis: upgrade to npm 12
This is what the starter app uses, and what most of us use locally,
so let's stay consistent.

Signed-off-by: Tom Gundersen <teg@jklm.no>
2021-05-21 19:23:14 +02:00

19 lines
558 B
YAML

language: node_js
sudo: required
notifications:
email: false
node_js:
- '12'
install:
- npm install
script:
- npm run travis:verify
- npx codecov
after_success:
- curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s
env:
global:
- REPO="git@github.com:RedHatInsights/image-builder-frontend-build"
- REPO_DIR="image-builder-frontend-build"
- BRANCH=${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}
- NODE_OPTIONS="--max-old-space-size=4096 --max_old_space_size=4096"