Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

chore: update node versions in ci #4

Merged
merged 1 commit into from
Oct 7, 2019
Merged
Show file tree
Hide file tree
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
28 changes: 17 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- v1-npm-{{checksum ".circleci/config.yml"}}
- run:
name: Install dependencies
command: .circleci/greenkeeper
command: yarn
- run:
name: Testing
command: yarn test
Expand All @@ -22,10 +22,14 @@ jobs:
command: |
./node_modules/.bin/nyc report --reporter text-lcov > coverage.lcov
curl -s https://codecov.io/bash | bash
node-8:
node-12:
<<: *test
docker:
- image: node:8
- image: node:12
node-10:
<<: *test
docker:
- image: node:10
release:
<<: *test
steps:
Expand Down Expand Up @@ -54,11 +58,13 @@ workflows:
"@oclif/color":
jobs:
- node-latest
- node-8
- release:
context: org-global
filters:
branches: {only: master}
requires:
- node-latest
- node-8
- node-12
- node-10
# - release:
# context: org-global
# filters:
# branches: {only: master}
# requires:
# - node-latest
# - node-12
# - node-10
25 changes: 0 additions & 25 deletions .circleci/greenkeeper

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "9"
nodejs_version: "10"
cache:
- '%LOCALAPPDATA%\Yarn -> appveyor.yml'
- node_modules -> yarn.lock
Expand Down