Skip to content

Commit

Permalink
chore: update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jul 23, 2018
1 parent bd29ee1 commit a69a37e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ version: 2
jobs:
test:
docker:
- image: circleci/node:6-browsers
- image: circleci/node:8-browsers
steps:
- checkout
- run: |
echo "node $(node -v)"
echo "npm v$(npm --version)"
echo "$(google-chrome --version)"
- restore_cache:
key: npm-1-{{ checksum "package.json" }}
key: npm-1.1-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: npm-1-{{ checksum "package.json" }}
key: npm-1.1-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: npm test
Expand Down

0 comments on commit a69a37e

Please sign in to comment.