Skip to content

Commit 2827eab

Browse files
authored
ci: use Node 22 on mac and windows (#8753)
### Description <!-- Please insert your description here and provide especially info about the "what" this PR is solving --> Resolves #issue-number <!-- You can also add additional context here --> ### Please don't delete this checklist! Before submitting the PR, please make sure you do the following: - [ ] It's really useful if your PR references an issue where it is discussed ahead of time. If the feature is substantial or introduces breaking changes without a discussion, PR might be closed. - [ ] Ideally, include a test that fails without this PR but passes with it. - [ ] Please, don't make changes to `pnpm-lock.yaml` unless you introduce a new test example. - [ ] Please check [Allow edits by maintainers](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork) to make review process faster. Note that this option is not available for repositories that are owned by Github organizations. ### Tests - [ ] Run the tests with `pnpm test:ci`. ### Documentation - [ ] If you introduce new functionality, document it. You can run documentation with `pnpm run docs` command. ### Changesets - [ ] Changes in changelog are generated from PR name. Please, make sure that it explains your changes in an understandable manner. Please, prefix changeset messages with `feat:`, `fix:`, `perf:`, `docs:`, or `chore:`.
1 parent bab343b commit 2827eab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686
node_version: [20, 22, 24]
8787
include:
8888
- os: macos-latest
89-
node_version: 20
89+
node_version: 22
9090
- os: windows-latest
91-
node_version: 20
91+
node_version: 22
9292
fail-fast: false
9393

9494
steps:
@@ -126,7 +126,7 @@ jobs:
126126

127127
test-browser:
128128
needs: changed
129-
name: 'Browsers: node-20, ${{ matrix.os }}'
129+
name: 'Browsers: node-22, ${{ matrix.os }}'
130130
if: needs.changed.outputs.should_skip != 'true'
131131

132132
runs-on: ${{ matrix.os }}
@@ -144,7 +144,7 @@ jobs:
144144

145145
- uses: ./.github/actions/setup-and-cache
146146
with:
147-
node-version: 20
147+
node-version: 22
148148

149149
- uses: browser-actions/setup-chrome@b94431e051d1c52dcbe9a7092a4f10f827795416 # v2.1.0
150150
- uses: browser-actions/setup-firefox@5914774dda97099441f02628f8d46411fcfbd208 # v1.7.0

0 commit comments

Comments
 (0)