Skip to content

Commit

Permalink
ci: update node versions in circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
bd82 committed Jun 3, 2021
1 parent e87fb60 commit 135ec97
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
version: 2.1
jobs:
build-node14:
build-node12:
docker:
- image: circleci/node:14-browsers
- image: circleci/node:12-browsers
working_directory: ~/repo
steps:
- run: sudo apt-get install libxss1
- checkout
- run: yarn
- run: yarn run ci
- run:
command: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
environment:
COVERALLS_SERVICE_NAME: circle-ci
COVERALLS_GIT_BRANCH: ${CIRCLE_BRANCH}

build-node12:
build-node14:
docker:
- image: circleci/node:12-browsers
- image: circleci/node:14-browsers
working_directory: ~/repo
steps:
- run: sudo apt-get install libxss1
- checkout
- run: yarn
- run: yarn run ci
- run:
command: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
environment:
COVERALLS_SERVICE_NAME: circle-ci
COVERALLS_GIT_BRANCH: ${CIRCLE_BRANCH}

build-node10:
build-node16:
docker:
- image: circleci/node:10-browsers
- image: circleci/node:16-browsers
working_directory: ~/repo
steps:
- run: sudo apt-get install libxss1
Expand Down Expand Up @@ -93,9 +93,9 @@ workflows:
version: 2
voter:
jobs:
- build-node10
- build-node12
- build-node14
- build-node16
- compliance
release:
jobs:
Expand Down

0 comments on commit 135ec97

Please sign in to comment.