Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ffa366

Browse files
authored
deploy on node 18 (badges#9385)
* deploy on node 18, run tests on node 20 * run test-bug-run-badge on node 18 * you missed a spot * ..and another
1 parent b2f47a3 commit 0ffa366

19 files changed

Lines changed: 30 additions & 30 deletions

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup
2020
uses: ./.github/actions/setup
2121
with:
22-
node-version: 16
22+
node-version: 18
2323

2424
- name: Danger
2525
run: npm run danger ci

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup
2020
uses: ./.github/actions/setup
2121
with:
22-
node-version: 16
22+
node-version: 18
2323

2424
- name: Build
2525
run: npm run build-docs

.github/workflows/test-bug-run-badge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup
3939
uses: ./.github/actions/setup
4040
with:
41-
node-version: 16
41+
node-version: 18
4242
cypress: false
4343

4444
- name: Output debug info

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup
2727
uses: ./.github/actions/setup
2828
with:
29-
node-version: 16
29+
node-version: 18
3030
cypress: true
3131

3232
- name: Run tests
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Integration@node 18
1+
name: Integration@node 20
22
on:
33
pull_request:
44
types: [opened, reopened, synchronize]
@@ -8,7 +8,7 @@ on:
88
- 'dependabot/**'
99

1010
jobs:
11-
test-integration-18:
11+
test-integration-20:
1212
runs-on: ubuntu-latest
1313
env:
1414
PAT_EXISTS: ${{ secrets.GH_PAT != '' }}
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup
3636
uses: ./.github/actions/setup
3737
with:
38-
node-version: 18
38+
node-version: 20
3939
env:
4040
NPM_CONFIG_ENGINE_STRICT: 'false'
4141

.github/workflows/test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup
3636
uses: ./.github/actions/setup
3737
with:
38-
node-version: 16
38+
node-version: 18
3939

4040
- name: Integration Tests (with PAT)
4141
if: ${{ env.PAT_EXISTS == 'true' }}

.github/workflows/test-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup
1818
uses: ./.github/actions/setup
1919
with:
20-
node-version: 16
20+
node-version: 18
2121

2222
- name: ESLint
2323
if: always()
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Main@node 18
1+
name: Main@node 20
22
on:
33
pull_request:
44
types: [opened, reopened, synchronize]
@@ -8,7 +8,7 @@ on:
88
- 'dependabot/**'
99

1010
jobs:
11-
test-main-18:
11+
test-main-20:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup
1818
uses: ./.github/actions/setup
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
env:
2222
NPM_CONFIG_ENGINE_STRICT: 'false'
2323

.github/workflows/test-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup
2323
uses: ./.github/actions/setup
2424
with:
25-
node-version: 16
25+
node-version: 18
2626

2727
- name: Core tests
2828
uses: ./.github/actions/core-tests

.github/workflows/test-package-lib.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
matrix:
1515
include:
1616
- node: '16'
17-
engine-strict: 'true'
18-
- node: '18'
1917
engine-strict: 'false'
18+
- node: '18'
19+
engine-strict: 'true'
2020
- node: '20'
2121
engine-strict: 'false'
2222
steps:

0 commit comments

Comments
 (0)