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
16 changes: 13 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:
permissions: {}

env:
NODE_ACTIVE_LTS: "22" # see https://nodejs.org/en/about/releases/
NODE_ACTIVE_LTS: "24" # see https://nodejs.org/en/about/releases/
REPORTS_DIR: "CI_reports"
TESTS_REPORTS_ARTIFACT: tests-reports
STANDARD_REPORTS_ARTIFACT: cs-reports
Expand Down Expand Up @@ -100,6 +100,8 @@ jobs:
with:
node-version: ${{ env.NODE_ACTIVE_LTS }}
package-manager-cache: false
- name: update npm
run: npm install -g npm@latest
- name: setup project
run: |
npm install --ignore-scripts --loglevel=silly
Expand Down Expand Up @@ -147,6 +149,8 @@ jobs:
with:
node-version: ${{ env.NODE_ACTIVE_LTS }}
package-manager-cache: false
- name: update npm
run: npm install -g npm@latest
- name: setup project
run: npm install --ignore-scripts --loglevel=silly
- name: setup tool
Expand All @@ -164,8 +168,9 @@ jobs:
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
- "24" # current
- "22" # active LTS
- "25" # current
- "24" # active LTS
- "22"
- "20"
- "20.18.0" # lowest supported
os:
Expand All @@ -190,6 +195,9 @@ jobs:
NODE_VERSION: '${{ matrix.node-version }}'
run:
case "$NODE_VERSION" in
'25' )
npm install -g npm@latest
;;
'24' | '22')
npm i -g npm@^11
;;
Expand Down Expand Up @@ -481,6 +489,8 @@ jobs:
with:
node-version: ${{ env.NODE_ACTIVE_LTS }}
package-manager-cache: false
- name: update npm
run: npm install -g npm@latest
- name: setup project
run: |
set -ex
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
REPORTS_DIR: CI_reports
PACKED_DIR: CI_packed
PACKED_ARTIFACT: packed
NODE_ACTIVE_LTS: "22"
NODE_ACTIVE_LTS: "24"

jobs:
bump:
Expand Down Expand Up @@ -64,6 +64,8 @@ jobs:
with:
node-version: ${{ env.NODE_ACTIVE_LTS }}
package-manager-cache: false
- name: update npm
run: npm install -g npm@latest
## ! no npm build at the moment
- name: bump VERSION
id: bump
Expand Down Expand Up @@ -106,6 +108,8 @@ jobs:
with:
node-version: ${{ env.NODE_ACTIVE_LTS }}
package-manager-cache: false
- name: update npm
run: npm install -g npm@latest
- name: setup project
run: |
npm install --ignore-scripts --include=optional --loglevel=silly
Expand Down