Skip to content

Commit 9436371

Browse files
chore: update defaults (#878)
1 parent c41f994 commit 9436371

File tree

6 files changed

+163
-156
lines changed

6 files changed

+163
-156
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ canary_tests: &canary_tests
2929
command: npm i --no-save webpack@next
3030
- run:
3131
name: Run Test.
32-
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
32+
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
3333

3434
version: 2
3535
jobs:
@@ -100,9 +100,9 @@ jobs:
100100
name: Submit coverage data to codecov.
101101
command: bash <(curl -s https://codecov.io/bash)
102102
when: on_success
103-
node6-canary:
103+
node8-canary:
104104
docker:
105-
- image: webpackcontrib/circleci-node10:latest
105+
- image: webpackcontrib/circleci-node8:latest
106106
<<: *canary_tests
107107

108108
workflows:
@@ -136,7 +136,7 @@ workflows:
136136
filters:
137137
tags:
138138
only: /.*/
139-
- node6-canary:
139+
- node8-canary:
140140
requires:
141141
- analysis
142142
- node6-latest

appveyor.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,16 @@ environment:
2121
- nodejs_version: '11'
2222
webpack_version: latest
2323
job_part: test
24-
- nodejs_version: '6'
24+
- nodejs_version: '8'
2525
webpack_version: next
26-
job_part: next
26+
job_part: test
2727
build: 'off'
2828
matrix:
2929
fast_finish: true
30+
allow_failures:
31+
- nodejs_version: '8'
32+
webpack_version: next
33+
job_part: test
3034
install:
3135
- ps: Install-Product node $env:nodejs_version x64
3236
- npm i -g npm@latest

0 commit comments

Comments
 (0)