Skip to content

Commit

Permalink
Test against node 10
Browse files Browse the repository at this point in the history
  • Loading branch information
jnordberg committed Jun 13, 2018
1 parent 9960a48 commit af1b4aa
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,31 @@ jobs:
- store_artifacts:
path: reports
destination: reports
node10:
docker:
- image: node:10-alpine
steps:
- run: apk add --no-cache make bash ca-certificates
- checkout
- restore_cache:
keys:
- node10-dependencies-{{ checksum "yarn.lock" }}
- node10-dependencies-
- run: yarn install --frozen-lockfile
- save_cache:
paths:
- node_modules
key: node10-dependencies-{{ checksum "yarn.lock" }}
- run: yarn test
- store_test_results:
path: reports
- store_artifacts:
path: reports
destination: reports
workflows:
version: 2
build:
jobs:
- node8
- node9
- node10

0 comments on commit af1b4aa

Please sign in to comment.