Skip to content

Commit

Permalink
fix: remove node8 job (temp)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 committed Aug 5, 2019
1 parent ab9573e commit 9a4dd6b
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .circleci/config.yml
@@ -1,6 +1,6 @@
version: 2

unit_tests: &unit_tests
node_unit_tests: &node_unit_tests
steps:
- checkout
- run:
Expand Down Expand Up @@ -54,34 +54,28 @@ jobs:
- run:
name: Check code style and linting
command: yarn run check
node8:
docker:
- image: node:8
<<: *unit_tests
node10:
docker:
- image: node:10
<<: *unit_tests
<<: *node_unit_tests
node11:
docker:
- image: node:11
<<: *unit_tests
<<: *node_unit_tests
node12:
docker:
- image: node:12
<<: *unit_tests
<<: *node_unit_tests
node12-browsers:
docker:
- image: circleci/node:12-browsers
<<: *browsers_unit_tests


workflows:
version: 2
build:
jobs:
- lint
- node8
- node10
- node11
- node12
Expand Down

0 comments on commit 9a4dd6b

Please sign in to comment.