Skip to content

Commit e7c0e86

Browse files
authored
Merge pull request #1019 from fortran-lang/maint/nodejs-bump
maint: bump nodejs to v20.x
2 parents 18717c0 + e3a9476 commit e7c0e86

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
matrix:
77
os: [ubuntu-latest]
88
gcc_v: [11]
9-
node-version: [18.x]
9+
node-version: [20.x]
1010
fail-fast: false
1111
runs-on: ${{ matrix.os }}
1212
env:

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 18
15+
node-version: 20.x
1616

1717
- name: Check if there are changes to deploy
1818
id: deploy-nightly

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: 18
13+
node-version: 20.x
1414
- run: npm ci
1515

1616
# Package and publish the extension to VS Code Marketplace

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Where `<YOUR-USERNAME>` should be your GitHub username.
2222

2323
### Dependencies
2424

25-
To build this project you will need [NodeJS](https://nodejs.org/) `>= 16.13.1`.
25+
To build this project you will need [NodeJS](https://nodejs.org/) `>= 20.0.0`.
2626
Open a terminal and run for a quick dependency installation:
2727

2828
```sh

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@
731731
"watch-dev": "webpack --mode development --watch --progress",
732732
"webpack": "webpack --mode production",
733733
"pretest": "npm run compile-dev && tsc -p tsconfig.test.json",
734-
"test": "npm run test:unit && npm run test:integration && npm run test:ui",
734+
"test": "npm run test:unit && npm run test:integration",
735735
"test:ui": "extest setup-and-run -i out/test/ui/*.js -m test/ui/.mocharc.js -s .vscode-test/ui -e .vscode-test/ui/extensions",
736736
"test:unit": "node ./out/test/unitTest/runTest.js",
737737
"test:integration": "node ./out/test/integration/runTest.js",

0 commit comments

Comments
 (0)