Skip to content

Commit

Permalink
Set up Node 14 in Github actions. See #16
Browse files Browse the repository at this point in the history
  • Loading branch information
katauber committed Nov 30, 2023
1 parent 5507d04 commit c6d9723
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Set up Node 14
uses: actions/setup-node@v4
with:
node-version: 14
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
- name: Set up Node 14
uses: actions/setup-node@v4
with:
node-version: 14
- name: Set up vsce
run: npm install -g vsce
- name: Set up JDK 11
Expand Down

0 comments on commit c6d9723

Please sign in to comment.