Skip to content

Commit

Permalink
feat!: upgrade Node.js to 14 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
VerteDinde committed Aug 2, 2022
1 parent e147b5e commit dc12942
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,21 @@ version: 2.1
orbs:
win: circleci/[email protected]
jobs:
test-linux-10:
test-linux-14:
docker:
- image: circleci/node:10
- image: circleci/node:14
<<: *steps-ci
test-linux-12:
test-linux-16:
docker:
- image: circleci/node:12
- image: circleci/node:16
<<: *steps-ci
test-linux-14:
test-linux-18:
docker:
- image: circleci/node:14
- image: cimg/node:18.7.0
<<: *steps-ci
test-mac:
macos:
xcode: "11.6.0"
xcode: "13.3.0"
<<: *steps-ci
test-windows:
executor:
Expand All @@ -72,13 +72,13 @@ workflows:
version: 2
test:
jobs:
- test-linux-10:
- test-linux-14:
filters:
branches: { ignore: gh-pages }
- test-linux-12:
- test-linux-16:
filters:
branches: { ignore: gh-pages }
- test-linux-14:
- test-linux-18:
filters:
branches: { ignore: gh-pages }
- test-mac:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
repository: electron/electron-quick-start
ref: refs/heads/master
path: electron-quick-start
- name: Use Node.js 10.x
- name: Use Node.js 14.x
uses: actions/[email protected]
with:
node-version: 10.x
node-version: 14.x
- name: Replace electron with electron-nightly
run: |
cd electron-quick-start
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
- uses: actions/[email protected]
with:
node-version: 12.x
node-version: 14.x
- run: npm install --engine-strict --no-lockfile
- run: npm run docs:build
- uses: docker://malept/gha-gh-pages:1.3.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 10.12.0"
"node": ">= 14.17.5"
},
"scripts": {
"ava": "ava test/index.js",
Expand Down

0 comments on commit dc12942

Please sign in to comment.