Skip to content

Commit

Permalink
Merge pull request #1019 from fortran-lang/maint/nodejs-bump
Browse files Browse the repository at this point in the history
maint: bump nodejs to v20.x
  • Loading branch information
gnikit committed Dec 10, 2023
2 parents 18717c0 + e3a9476 commit e7c0e86
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
matrix:
os: [ubuntu-latest]
gcc_v: [11]
node-version: [18.x]
node-version: [20.x]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20.x

- name: Check if there are changes to deploy
id: deploy-nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20.x
- run: npm ci

# Package and publish the extension to VS Code Marketplace
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Where `<YOUR-USERNAME>` should be your GitHub username.

### Dependencies

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

```sh
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@
"watch-dev": "webpack --mode development --watch --progress",
"webpack": "webpack --mode production",
"pretest": "npm run compile-dev && tsc -p tsconfig.test.json",
"test": "npm run test:unit && npm run test:integration && npm run test:ui",
"test": "npm run test:unit && npm run test:integration",
"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",
"test:unit": "node ./out/test/unitTest/runTest.js",
"test:integration": "node ./out/test/integration/runTest.js",
Expand Down

0 comments on commit e7c0e86

Please sign in to comment.