Skip to content

Commit b498c22

Browse files
CopilotApollon77
andcommitted
Remove Node.js 18.x from GitHub CI template workflows
Remove 18.x from adapterTestVersions array in GitHub workflow template to complete Node.js 18 support removal. Co-authored-by: Apollon77 <11976694+Apollon77@users.noreply.github.com>
1 parent 612f293 commit b498c22

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

templates/_github/workflows/test-and-release.yml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const templateFunction: TemplateFunction = answers => {
1515
const isGitHub = answers.target === "github";
1616

1717
const ltsNodeVersion = "20.x";
18-
const adapterTestVersions = ["18.x", "20.x", "22.x"];
18+
const adapterTestVersions = ["20.x", "22.x"];
1919
const adapterTestOS = ["ubuntu-latest", "windows-latest", "macos-latest"];
2020

2121
const adapterName = answers.adapterName;

test/baselines/adapter_JS_JsonUI_ESLint_TypeChecking_Spaces_SingleQuotes_Apache-2.0/.github/workflows/test-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
43-
node-version: [18.x, 20.x, 22.x]
43+
node-version: [20.x, 22.x]
4444
os: [ubuntu-latest, windows-latest, macos-latest]
4545

4646
steps:

test/baselines/adapter_JS_React/.github/workflows/test-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
43-
node-version: [18.x, 20.x, 22.x]
43+
node-version: [20.x, 22.x]
4444
os: [ubuntu-latest, windows-latest, macos-latest]
4545

4646
steps:

test/baselines/adapter_TS_ESLint_Tabs_DoubleQuotes_MIT/.github/workflows/test-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ${{ matrix.os }}
4242
strategy:
4343
matrix:
44-
node-version: [18.x, 20.x, 22.x]
44+
node-version: [20.x, 22.x]
4545
os: [ubuntu-latest, windows-latest, macos-latest]
4646

4747
steps:

test/baselines/adapter_TS_React/.github/workflows/test-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ${{ matrix.os }}
4242
strategy:
4343
matrix:
44-
node-version: [18.x, 20.x, 22.x]
44+
node-version: [20.x, 22.x]
4545
os: [ubuntu-latest, windows-latest, macos-latest]
4646

4747
steps:

test/baselines/portal-github/.github/workflows/test-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ${{ matrix.os }}
4242
strategy:
4343
matrix:
44-
node-version: [18.x, 20.x, 22.x]
44+
node-version: [20.x, 22.x]
4545
os: [ubuntu-latest, windows-latest, macos-latest]
4646

4747
steps:

0 commit comments

Comments
 (0)