Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
ci: move context to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLeedham committed Jan 23, 2020
1 parent 664b875 commit 9fb4ac5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@ install_lint_test: &install_lint_test

jobs:
install_lint_test-node10:
context: node-10
docker:
- image: circleci/node:10
<<: [*defaults, *install_lint_test]
install_lint_test-node12:
context: node-12
docker:
- image: circleci/node:12
<<: [*defaults, *install_lint_test]
Expand Down Expand Up @@ -60,8 +58,10 @@ workflows:
version: 2
install_lint_deploy:
jobs:
- install_lint_test-node10
- install_lint_test-node12
- install_lint_test-node10:
context: node-10
- install_lint_test-node12:
context: node-12
- deploy:
context: npm
requires:
Expand Down

0 comments on commit 9fb4ac5

Please sign in to comment.