0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

chore: add node 11 to circleci (#1153)

This commit is contained in:
Juan Picado @jotadeveloper 2018-12-07 06:41:37 +01:00 committed by GitHub
parent b3580c3e43
commit 3525e6e8a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,9 @@ aliases:
- &node10_executor
docker:
- image: circleci/node:10
- &node11_executor
docker:
- image: circleci/node:11
- &default_executor
<<: *node9_executor
- &repo_key
@ -137,6 +140,17 @@ jobs:
yarn run test
yarn test:functional
test_node11:
<<: *defaults
<<: *node10_executor
steps:
- *restore_repo
- run:
name: Test with Node 11
command: |
yarn run test
yarn test:functional
test_e2e:
<<: *defaults
<<: *node9_browser_executor
@ -209,6 +223,10 @@ workflows:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_node11:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_e2e:
requires:
- prepare
@ -223,6 +241,7 @@ workflows:
- test_node8
- test_node9
- test_node10
- test_node11
- test_e2e
- test_size
<<: *ignore_non_dev_branches