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
47 changes: 28 additions & 19 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions: {}

env:
# https://nodejs.dev/en/about/releases/
NODE_ACTIVE_LTS: "22"
NODE_ACTIVE_LTS: "24"

## As this project is a meta-package, there are no functionalities nor tests.
## So the only responsibility that must be assured is: this project can be installed under all circumstances.
Expand All @@ -35,18 +35,22 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with node14
- ubuntu-latest
- windows-latest
- macos-latest
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
- "23" # Current
- "22" # Active LTS
- "20" # Maintenance
- "25" # Current
- "24" # Active LTS
- "22"
- "20"
- "18"
- "16"
- "14"
exclude:
- os: macos-latest # macos-latest has issues with node14
node-version: "14"
steps:
- name: Checkout
# see https://github.com/actions/checkout
Expand All @@ -72,18 +76,22 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with node14
- ubuntu-latest
- windows-latest
- macos-latest
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
- "23" # Current
- "22" # Active LTS
- "20" # Maintenance
- "25" # Current
- "24" # Active LTS
- "22"
- "20"
- "18"
- "16"
- "14"
exclude:
- os: macos-latest # macos-latest has issues with node14
node-version: "14"
steps:
- name: Checkout
## see https://github.com/actions/checkout
Expand All @@ -107,15 +115,16 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- ubuntu-latest
- windows-latest
- macos-latest
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
- "23" # Current
- "22" # Active LTS
- "20" # Maintenance
- "25" # Current
- "24" # Active LTS
- "22"
- "20"
- "18"
pnpm-version: [ "latest" ]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ permissions: {}

env:
# https://nodejs.dev/en/about/releases/
NODE_ACTIVE_LTS: "22"
NODE_ACTIVE_LTS: "24"

jobs:
bump:
Expand Down