Skip to content

Commit 65ceaa3

Browse files
authored
Merge pull request #71 from salesforce/260Node20
chore: revert node 22 to node 20
2 parents 644f90c + 9500433 commit 65ceaa3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 22 ]
9+
node: [ 20 ]
1010
name: Linting on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 22 ]
9+
node: [ 20 ]
1010
name: Prettier on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 22, 24 ]
9+
node: [ 20, 22 ]
1010
name: Run tests on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
strategy:
2222
matrix:
23-
node: [ 22, 24 ]
23+
node: [ 20, 22 ]
2424
name: Run tests on Windows with Node ${{ matrix.node }}
2525
steps:
2626
- uses: actions/checkout@v4

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@salesforce/eslint-plugin-lwc-graph-analyzer",
3-
"version": "1.1.0-beta.1",
3+
"version": "1.1.0-beta.2",
44
"description": "ESLint plugin to analyze data graph in a LWC component",
55
"contributors": [
66
{
@@ -88,13 +88,13 @@
8888
"trailingComma": "none"
8989
},
9090
"engines": {
91-
"node": ">=22"
91+
"node": ">=20"
9292
},
9393
"peerDependencies": {
9494
"eslint": ">=7"
9595
},
9696
"volta": {
97-
"node": "22.21.1",
97+
"node": "20.18.0",
9898
"yarn": "1.22.22"
9999
}
100100
}

0 commit comments

Comments
 (0)