This reverts commit bd99a90faa.
While this is common in cockpit's projects, osbuild projects refrain
from rebasing branches.
Rebasing on master as it happens to be when the test is running, leaves
you in a state where you neither know that the branch itself is working,
nor that it will work when you actually do merge it later, because
master might have changed in between.
22 lines
597 B
YAML
22 lines
597 B
YAML
language: node_js
|
|
sudo: required
|
|
notifications:
|
|
email: false
|
|
node_js:
|
|
- '10'
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
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"
|