Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: "./packages/${{ inputs.package }}"
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- name: "Checkout"
uses: actions/checkout@v4.1.6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
# TODO: Add 22.x - removed since it caused infinite screenshot loops
node-version: [18.x, 20.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v4.1.6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false # Continue other combos even if one fails
matrix:
node: [18, 20, 22, 24]
node: [20, 22, 24]
react: ["18.2.0"] # TODO: Add "19.2.1" when ready

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: ./packages/${{ inputs.package }}
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- name: "Checkout"
uses: actions/checkout@v4.1.6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wcag_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4.1.6
- uses: actions/setup-node@v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion packages/pages-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"types": "dist/index.d.ts",
"engines": {
"node": "^18 || ^20 || ^22 || ^24"
"node": "^20 || ^22 || ^24"
},
"scripts": {
"dev": "pnpm run storybook",
Expand Down
2 changes: 1 addition & 1 deletion test-sites/pages-components-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "playwright test"
},
"engines": {
"node": "^18 || ^20.2.0 || ^22 || ^24"
"node": "^20.2.0 || ^22 || ^24"
},
"dependencies": {
"@yext/pages-components": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ! command -v nvm >/dev/null 2>&1; then
exit 1
fi

NODE_VERSIONS=("18" "20" "22" "24")
NODE_VERSIONS=("20" "22" "24")
REACT_VERSIONS=("18.2.0") # TODO: Add "19.2.1"

INITIAL_NODE_VERSION=$(node -v)
Expand Down
Loading