UNPKG

306 BYAMLView Raw
1# The travis build script used to run the tests and deploy the code to npm
2language: node_js
3node_js:
4 - v10
5 - v8
6
7cache: npm
8
9# Install dependencies
10install: npm install
11
12# Run the test and typescript test
13script: npm run verify
14
15# Only build/run on master branch commit
16branches:
17 only:
18 - master