ci: update node to v22

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2025-04-20 19:36:22 +02:00 committed by Mr. DrogDrog
parent e368f6f9cb
commit 893da0142c
4 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ on:
env:
NETLIFY_VERSION: 13.2.2
NODEJS_VERSION: 20
NODEJS_VERSION: 22
PYTHON_VERSION: 3.11
defaults:

View file

@ -20,7 +20,7 @@ concurrency:
cancel-in-progress: true
env:
NODEJS_VERSION: 20
NODEJS_VERSION: 22
HEAD_COMMIT_HASH: "${{ !!github.event.pull_request && github.event.pull_request.head.sha || github.sha }}"
jobs:

View file

@ -16,7 +16,7 @@ permissions:
contents: read
env:
NODEJS_VERSION: 20
NODEJS_VERSION: 22
jobs:
lint:

View file

@ -25,9 +25,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20' ] # Are you changing this? Don't forget to update the min. and recommended node version in docs/content/how-to/develop/setup.md!
node: [ '22' ] # Are you changing this? Don't forget to update the min. and recommended node version in docs/content/how-to/develop/setup.md!
include:
- node: '20'
- node: '22'
coverage: true
name: Test and build with NodeJS ${{ matrix.node }}
steps: