Skip to content

Commit ddc3833

Browse files
authored
Merge branch 'v4.3.0-dev' into dependabot/npm_and_yarn/mocha-10.0.0
2 parents 0b3e127 + 7191c29 commit ddc3833

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/tests-release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v2
2727
- uses: actions/setup-node@v2
2828
with:
29-
node-version: '12'
29+
node-version: '14'
3030
# install to create local package-lock.json but don't cache the files
3131
# also: no audit for dev dependencies
3232
- run: npm i --package-lock-only && npm audit --production
@@ -40,7 +40,7 @@ jobs:
4040
needs: [audit]
4141
strategy:
4242
matrix:
43-
node: [12, 14, 16]
43+
node: [14, 16, 18]
4444
steps:
4545
- name: Checkout ${{ matrix.node }}
4646
uses: actions/checkout@v2
@@ -81,7 +81,7 @@ jobs:
8181
needs: [unittest]
8282
strategy:
8383
matrix:
84-
node: [12, 14] # TODO get running for node 16
84+
node: [14, 16, 18] # TODO get running for node 16
8585
steps:
8686
# checkout this repo
8787
- name: Checkout ${{ matrix.node }}
@@ -125,7 +125,7 @@ jobs:
125125
- uses: actions/checkout@v2
126126
- uses: actions/setup-node@v2
127127
with:
128-
node-version: 12
128+
node-version: 14
129129
registry-url: https://registry.npmjs.org/
130130
- run: npm i
131131
- run: npm publish --dry-run
@@ -143,7 +143,7 @@ jobs:
143143
- uses: actions/setup-node@v2
144144
with:
145145
# we always publish targeting the lowest supported node version
146-
node-version: 12
146+
node-version: 14
147147
registry-url: $registry-url(npm)
148148
- run: npm i
149149
- run: npm publish --dry-run

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node: [12, 14, 16]
21+
node: [14, 16, 18]
2222
steps:
2323
- name: Checkout ${{ matrix.node }}
2424
uses: actions/checkout@v2

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"license": "MIT",
4141
"engines": {
42-
"node": ">=12.0.0"
42+
"node": ">=14.0.0"
4343
},
4444
"scripts": {
4545
"pretest": "./node_modules/.bin/eslint lib test index.js",

0 commit comments

Comments
 (0)