Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop node v6 from CI #258

Merged
merged 3 commits into from
Feb 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ workflows:
version: 2
test-publish:
jobs:
- test-node6:
filters: # required since `deploy` has tag filters AND requires `build`
tags:
only: /.*/
- test-node8:
filters: # required since `deploy` has tag filters AND requires `build`
tags:
Expand All @@ -22,7 +18,6 @@ workflows:
only: /.*/
- publish:
requires:
- test-node6
- test-node8
- test-node10
filters:
Expand All @@ -34,7 +29,7 @@ workflows:
defaults: &defaults
working_directory: ~/opentmi
docker:
- image: circleci/node:6.11.4
- image: circleci/node:8.12.0-browsers
steps:
- checkout
- run: node --version > _tmp_file
Expand Down Expand Up @@ -95,15 +90,6 @@ defaults: &defaults
- store_test_results:
path: coverage/coverage.json
jobs:
test-node6:
<<: *defaults
docker:
- image: circleci/node:6.14.4-browsers
environment:
CHROME_BIN: "/usr/bin/google-chrome"
NODE_ENV: test
NPM_CI_INSTALL: "install"
- image: mongo:4.1.2
test-node8:
<<: *defaults
docker:
Expand Down