FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

ci: add `node >= v10.0.0` and skip canary · webpack-contrib/webpack-defaults@f97c678 · GitHub

This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit f97c678

Browse files
ci: add node >= v10.0.0 and skip canary
1 parent 63644e1 commit f97c678

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

‎templates/.circleci/config.yml‎

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
docker:
6767
- image: webpackcontrib/circleci-node10:latest
6868
<<: *unit_tests
69-
node8-canary:
69+
node10-canary:
7070
docker:
71-
- image: webpackcontrib/circleci-node8:latest
71+
- image: webpackcontrib/circleci-node10:latest
7272
<<: *canary_tests
7373
analysis:
7474
docker:
@@ -106,7 +106,6 @@ jobs:
106106
name: Publish to NPM
107107
command: printf "noop running conventional-github-releaser"
108108

109-
version: 2.0
110109
workflows:
111110
version: 2
112111
validate-publish:
@@ -138,7 +137,7 @@ workflows:
138137
filters:
139138
tags:
140139
only: /.*/
141-
- node8-canary:
140+
- node10-canary:
142141
requires:
143142
- analysis
144143
- node6-latest
@@ -148,8 +147,8 @@ workflows:
148147
- publish:
149148
requires:
150149
- node8-latest
151-
- node8-canary
152150
- node10-latest
151+
- node10-canary
153152
filters:
154153
branches:
155154
only:

‎templates/appveyor.yml‎

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ init:
66
- git config --global core.autocrlf input
77
environment:
88
matrix:
9+
- nodejs_version: '10'
10+
webpack_version: latest
11+
job_part: test
912
- nodejs_version: '8'
1013
webpack_version: latest
1114
job_part: test
1215
- nodejs_version: '6'
1316
webpack_version: latest
1417
job_part: test
15-
- nodejs_version: '8'
18+
- nodejs_version: '10'
1619
webpack_version: next
1720
job_part: test
1821
build: 'off'
@@ -27,4 +30,5 @@ before_test:
2730
test_script:
2831
- node --version
2932
- npm --version
30-
- cmd: npm run ci:%job_part%
33+
- cmd: FOR /F %%I in ('compver --name webpack --gte %webpack_version% --lt latest') do SET COMPARED_VERSION_RESULT=%%I
34+
- cmd: IF %COMPARED_VERSION_RESULT% NEQ -1 (npm run ci:%job_part%) ELSE (ECHO "Next is older than Latest - Skipping Canary Suite")

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL