* Quick example of a collision test integration test
* Add a test for ghost and hidden sprites
* enable scratch/es6 which then had my lint error for `(param) => {}` arrows
* cleanup npm test command
* an a was an an but should have been an a
* 2space tabs for the html doc
* Add some comments in the integration index html
* Add a few more comments about intentionally leaking variables into the global scope
* add some more comments for the integration helper and add a timeout
* 4 space tabs are actually correct
* adding even more comments and improving readability a little
* fix lint no-shadow rule
* fix indentation on comment
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
language: node_js
|
|
dist: trusty
|
|
addons:
|
|
chrome: stable
|
|
node_js:
|
|
- 8
|
|
- node
|
|
env:
|
|
- NODE_ENV=production
|
|
before_install:
|
|
- google-chrome-stable --headless --no-sandbox --remote-debugging-port=9222 &
|
|
install:
|
|
- npm --production=false install
|
|
- npm --production=false update
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
script:
|
|
- npm run lint
|
|
- npm run docs
|
|
- npm run tap
|
|
- stage: deploy
|
|
node_js: 8
|
|
script: npm run build
|
|
before_deploy:
|
|
- VPKG=$($(npm bin)/json -f package.json version)
|
|
- export VERSION=${VPKG}-prerelease.$(date +%Y%m%d%H%M%S)
|
|
- npm --no-git-tag-version version $VERSION
|
|
- git config --global user.email $(git log --pretty=format:"%ae" -n1)
|
|
- git config --global user.name $(git log --pretty=format:"%an" -n1)
|
|
deploy:
|
|
provider: npm
|
|
skip_cleanup: true
|
|
"on":
|
|
all_branches: true
|
|
condition: $RELEASE_BRANCHES =~ $TRAVIS_BRANCH
|
|
email: $NPM_EMAIL
|
|
api_key: $NPM_TOKEN
|