debian-image-builder-frontend/.travis.yml
Sanne Raymaekers bd62e178ce
travis: Configure travis builds (#5)
This should upload builds to osbuild/image-builder-frontend-build.
2020-09-21 10:57:45 -05:00

19 lines
548 B
YAML

language: node_js
sudo: required
notifications:
node_js:
- '10'
install:
- npm ci
- npm install -g codecov
script:
- npm run travis:verify
after_success:
- codecov
- curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s
env:
global:
- REPO="git@github.com:osbuild/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"