Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Update CI configuration (#306)
Browse files Browse the repository at this point in the history
Ensure Node.js v6 is installed
  • Loading branch information
Arcanemagus authored Jul 15, 2016
1 parent 5809510 commit 8358415
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Project specific config
language: node_js # For lint tools
node_js: "5"

os:
- linux
- osx
Expand All @@ -11,6 +8,10 @@ env:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta

# Installed for linting the project
language: node_js
node_js: "6"

# Generic setup follows
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ environment:
- ATOM_CHANNEL: beta

install:
- ps: Install-Product node 5 # For lint tools
- ps: Install-Product node 6 # For lint tools

build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
Expand Down
7 changes: 5 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ test:
override:
- atom -v
- apm -v
- ./node_modules/.bin/eslint lib
- ./node_modules/.bin/eslint spec
- npm run lint
- apm test

machine:
node:
version: 6

0 comments on commit 8358415

Please sign in to comment.