Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add node 22 to test matrix #312

Merged
merged 2 commits into from
Jul 24, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ name: Tests
on:
push:
branches:
- master # allthough master is push protected we still keep it
- master # although master is push protected we still keep it
- development
pull_request: # runs on all PR
branches-ignore:
- release-* # on release we run an extended workflow so no need for this
- release-* # on release, we run an extended workflow so no need for this

jobs:
lint:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
needs: [lint]
strategy:
matrix:
node: [16, 18, 20]
node: [16, 18, 20, 22]
steps:
- name: Checkout ${{ matrix.node }}
uses: actions/checkout@v3
Expand Down
Loading