8000 chore(): node6 support & tests by jkuri · Pull Request #1351 · angular/angular-cli · GitHub
[go: up one dir, main page]

Skip to content

chore(): node6 support & tests #1351

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
environment:
nodejs_version: "5.0"
matrix:
- nodejs_version: "5.0"
- nodejs_version: "6.0"

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ env:
- NODE_VERSION=5 SCRIPT=lint
- NODE_VERSION=5 SCRIPT=test
- NODE_VERSION=5 TARGET=mobile SCRIPT=mobile_test
- NODE_VERSION=6 SCRIPT=test
- NODE_VERSION=6 TARGET=mobile SCRIPT=mobile_test
os:
- linux
- osx
Expand All @@ -16,6 +18,8 @@ matrix:
env: NODE_VERSION=5 SCRIPT=lint
- os: osx
env: NODE_VERSION=5 TARGET=mobile SCRIPT=mobile_test
- os: osx
env: NODE_VERSION=6 TARGET=mobile SCRIPT=mobile_test

script:
- npm run-script $SCRIPT
Expand Down
0