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

Commit

Permalink
tests for node 7 and appveyor for windows testsing
Browse files Browse the repository at this point in the history
  • Loading branch information
cmosh committed Mar 30, 2017
1 parent 2fe95af commit 1b1fda5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
Expand All @@ -17,3 +18,4 @@ after_success:
- npm link
- cd recursive && yo at-angular --default
- npm test
- npm run build
27 changes: 27 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
environment:
matrix:
# node.js
- nodejs_version: "7"
- nodejs_version: "6"
- nodejs_version: "6"
- nodejs_version: "4"
# io.js
- nodejs_version: "1.0"

install:
- ps: Install-Product node $env:nodejs_version
- npm install

# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
- mkdir recursive
- npm install -g yo
- npm link
- cd recursive && yo at-angular --default
- npm test
- npm run build

0 comments on commit 1b1fda5

Please sign in to comment.