Skip to content

Commit

Permalink
feat: Use node v10 (#158)
Browse files Browse the repository at this point in the history
_Potentially breaking release_, so tagged as a feature in case users need to pin
to an older version rather than update unmaintained node
  • Loading branch information
Wil Wilsman committed Feb 3, 2020
1 parent 68ffa84 commit b70fa71
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ default_test_steps: &default_test_steps
- run: yarn test

jobs:
test_node_8:
test:
docker:
- image: circleci/node:8-browsers
- image: circleci/node:10-browsers
environment:
PERCY_ENABLE: 0
<<: *default_test_steps
test_node_10_with_percy:
percy_test:
# We've opted this node version to be the one that runs and reports Percy's status
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
<<: *default_test_steps
release:
docker:
- image: circleci/node:8
- image: circleci/node:12
steps:
- checkout
- run: yarn
Expand All @@ -30,9 +30,9 @@ workflows:
version: 2.1
test_and_release:
jobs:
- test_node_8
- test_node_10_with_percy
- test
- percy_test
- release:
requires:
- test_node_8
- test_node_10_with_percy
- test
- percy_test

0 comments on commit b70fa71

Please sign in to comment.