hiring-without-whiteboards/.travis.yml
2019-03-03 17:00:43 -08:00

25 lines
405 B
YAML

---
language: node_js
node_js:
- "11"
sudo: false
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn test
branches:
only:
- master
- staging # This is where pull requests from "bors r+" are built.
- trying # This is where pull requests from "bors try" are built.