-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# You can use any Docker image from Docker Hub or your own container registry | ||
language: node_js | ||
node_js: | ||
- "7.7.1" | ||
|
||
env: | ||
- CXX=g++-4.8 | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
before_install: | ||
- npm config set spin false | ||
|
||
install: | ||
- npm uninstall typescript | ||
- npm install -g typescript | ||
- npm install --development | ||
|
||
cache: | ||
directories: | ||
- "node_modules" | ||
|
||
before_script: | ||
- tsc | ||
|
||
script: | ||
- npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters