-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a single script for testing, updated travis config
- Loading branch information
1 parent
e2b9f58
commit 18ba351
Showing
3 changed files
with
23 additions
and
11 deletions.
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 |
---|---|---|
@@ -1,22 +1,16 @@ | ||
language: node_js | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
node_js: | ||
- "5" | ||
- "5.1" | ||
- "4" | ||
- "4.2" | ||
- "4.1" | ||
- "4.0" | ||
- "0.12" | ||
- "0.11" | ||
- "0.10" | ||
- "0.8" | ||
- "0.6" | ||
|
||
before_script: | ||
- npm install -g gulp | ||
- npm install | ||
|
||
script: | ||
- node tests/prepare_tests.js | ||
- gulp --gulpfile tests/gulpfile.js dump | ||
- ./tests/tests.bash |
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
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,16 @@ | ||
#!/bin/bash | ||
|
||
# Go back to root project directory | ||
cd `dirname $0`/../ | ||
|
||
echo "Removing node modules..." | ||
rm -rf node_modules/ | ||
|
||
echo "Installing dependencies..." | ||
npm install | ||
|
||
echo "Preparing tests..." | ||
node prepare_tests.js | ||
|
||
echo "Executing gulp dump..." | ||
./node_modules/.bin/gulp --gulpfile gulpfile.js dump |