Merge pull request #3731 from github/koesie10/setup-node-release

Setup Node in release workflows
This commit is contained in:
Koen Vlaswinkel
2024-09-30 11:26:29 +02:00
committed by GitHub

View File

@@ -127,6 +127,13 @@ jobs:
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: extensions/ql-vscode/.nvmrc
- name: Download artifact
uses: actions/download-artifact@v4
with:
@@ -144,6 +151,13 @@ jobs:
env:
OPEN_VSX_TOKEN: ${{ secrets.OPEN_VSX_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: extensions/ql-vscode/.nvmrc
- name: Download artifact
uses: actions/download-artifact@v4
with: