mirror of
https://github.com/rjNemo/hiring-without-whiteboards
synced 2026-06-06 02:26:45 +00:00
25 lines
405 B
YAML
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.
|