Skip to content

Commit aa5ce76

Browse files
authored
Use node 22 LTS in CI/CD scripts (#1552)
1 parent be81d21 commit aa5ce76

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
audit:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: audit
2424
runs-on: ${{ matrix.os }}

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
publish-docs:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: build-docs
2424
runs-on: ${{ matrix.os }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
node-version: [ 20, 22 ]
23+
node-version: [ 20, 22, 24 ]
2424
os: [ ubuntu-latest, windows-latest, macos-latest ]
2525
install-command: [ i, ci ]
2626
runs-on: ${{ matrix.os }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
lint:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: lint
2424
runs-on: ${{ matrix.os }}

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
performance-test:
1515
strategy:
1616
matrix:
17-
node-version: [ '20' ]
17+
node-version: [ '22' ]
1818
os: [ 'ubuntu-latest' ]
1919
name: Test performance
2020
runs-on: ${{ matrix.os }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
publish-docs:
1313
strategy:
1414
matrix:
15-
node-version: [ '20' ]
15+
node-version: [ '22' ]
1616
os: [ 'ubuntu-latest' ]
1717
name: publish-docs
1818
runs-on: ${{ matrix.os }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
unit-tests:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: unit-tests
2424
runs-on: ${{ matrix.os }}
@@ -37,7 +37,7 @@ jobs:
3737
- name: Run tests
3838
run: |
3939
npm run test:unit.ci -- --coverage
40-
40+
4141
- name: Upload coverage to Codecov
4242
uses: codecov/codecov-action@6004246f47ab62d32be025ce173b241cd84ac58e # https://github.com/codecov/codecov-action/releases/tag/v1.0.13
4343
env:
@@ -46,7 +46,7 @@ jobs:
4646
browser-tests:
4747
strategy:
4848
matrix:
49-
node-version: [ '20' ]
49+
node-version: [ '22' ]
5050
os: [ 'ubuntu-latest' ]
5151
name: browser-tests
5252
runs-on: ${{ matrix.os }}

docs/guide/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ format , builds ES6 version
3838
* `npm run bundle:languages` - builds the languages
3939
* `npm run bundle:typings` - generates TypeScript typing, only emits ‘.d.ts’ declaration files
4040

41-
We use the Node 20 LTS in the build-chain and recommend this version for building. Note that for using (not building) HyperFormula, a wider range of Node versions is supported.
41+
We use the Node 22 LTS in the build-chain and recommend this version for building. Note that for using (not building) HyperFormula, a wider range of Node versions is supported.
4242

4343
## Verify the build
4444

0 commit comments

Comments
 (0)