Skip to content

Commit

Permalink
Update to node 20
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <fbricon@gmail.com>
  • Loading branch information
fbricon committed Jul 20, 2024
1 parent 5dad117 commit af9c29f
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set Up NodeJS
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"

- name: Set Up Java
uses: actions/setup-java@v4
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Release

on:
on:
push:
tags:
- "*.*.*"
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Set Up NodeJS
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Set Up Java
uses: actions/setup-java@v4
Expand All @@ -35,20 +35,20 @@ jobs:
cache: 'maven'

- name: Install requirements
working-directory: ./jbang-vscode
working-directory: ./jbang-vscode
run: |
npm ci
npm install -g typescript "@vscode/vsce"
- name: Build server
working-directory: ./jbang-vscode
working-directory: ./jbang-vscode
run: npm run build-ext

- name: Build vsix
working-directory: ./jbang-vscode
working-directory: ./jbang-vscode
run: |
vsce package
- name: Upload to Github Releases
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.15.0
nodejs 20.15.1
6 changes: 5 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ vsc-extension-quickstart.md
**/*.map
**/*.ts
**/*.vsix
package.insiders.json
package.insiders.json
.tool-versions
scripts/
.github/
renovate.json
43 changes: 28 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
},
"devDependencies": {
"@types/mocha": "10.0.2",
"@types/node": "18.15.0",
"@types/node": "20.14.11",
"@types/vscode": "1.65.0",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
Expand Down

0 comments on commit af9c29f

Please sign in to comment.