Skip to content
This repository was archived by the owner on Mar 5, 2021. It is now read-only.

Commit 60d1a12

Browse files
committed
Create .travis.yml
1 parent bce975a commit 60d1a12

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- "4.2.4"
5+
# We need npm 3 and Node.js 4.x ships with npm 2
6+
# so install the latest version
7+
before_install:
8+
- npm install -g npm
9+
- npm --version
10+
# Skip "npm install" since "npm run build" takes care of it below
11+
install: true
12+
before_script:
13+
- cd ..
14+
- git clone https://github.com/superpowers/superpowers.git
15+
- cd superpowers
16+
- mkdir systems
17+
- mv ../superpowers-game systems/game
18+
- cd systems
19+
- ls -l
20+
cache:
21+
directories:
22+
- node_modules
23+
script:
24+
- npm run build
25+
notifications:
26+
webhooks:
27+
urls:
28+
- https://webhooks.gitter.im/e/44f5607466509af53a93
29+
on_success: change
30+
on_failure: always
31+
on_start: never

0 commit comments

Comments
 (0)