Skip to content

Commit

Permalink
chore: update defaults (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi committed Dec 25, 2018
1 parent c41f994 commit 9436371
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 156 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -29,7 +29,7 @@ canary_tests: &canary_tests
command: npm i --no-save webpack@next
- run:
name: Run Test.
command: if [[ $(compver --name webpack --gte next --lt latest) < 1 ]] ; then printf "Next is older than Latest - Skipping Canary Suite"; else npm run ci:test; fi
command: if [[ $(compver --name webpack --gte next --lt latest) < 1 ]] ; then printf "Next is older than Latest - Skipping Canary Suite"; else npm run ci:test || true; fi

version: 2
jobs:
Expand Down Expand Up @@ -100,9 +100,9 @@ jobs:
name: Submit coverage data to codecov.
command: bash <(curl -s https://codecov.io/bash)
when: on_success
node6-canary:
node8-canary:
docker:
- image: webpackcontrib/circleci-node10:latest
- image: webpackcontrib/circleci-node8:latest
<<: *canary_tests

workflows:
Expand Down Expand Up @@ -136,7 +136,7 @@ workflows:
filters:
tags:
only: /.*/
- node6-canary:
- node8-canary:
requires:
- analysis
- node6-latest
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Expand Up @@ -21,12 +21,16 @@ environment:
- nodejs_version: '11'
webpack_version: latest
job_part: test
- nodejs_version: '6'
- nodejs_version: '8'
webpack_version: next
job_part: next
job_part: test
build: 'off'
matrix:
fast_finish: true
allow_failures:
- nodejs_version: '8'
webpack_version: next
job_part: test
install:
- ps: Install-Product node $env:nodejs_version x64
- npm i -g npm@latest
Expand Down

0 comments on commit 9436371

Please sign in to comment.