Updates node version in code and CI #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish VSCode extension to Marketplace and OpenVSX | ||
on: | ||
# Only allow this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
env: | ||
NODE_OPTIONS: '--max_old_space_size=4096' | ||
jobs: | ||
publish-vscode-extension: | ||
name: 'Publish VSCode extension to Marketplace and OpenVSX' | ||
environment: publish-vscode-extension | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
- name: Setup antlr4 | ||
uses: ./.github/actions/setup-antlr4 | ||
- name: Install dependencies with frozen lock file | ||
run: npm ci | ||
- name: Build all packages | ||
run: npm run build | ||
- name: Publish to VSCode Marketplace | ||
env: | ||
VSCE_PAT: ${{ secrets.VSCE_PAT }}: | ||
run: | | ||
cd packages/vscode-extension | ||
npx vsce package | ||
npx vsce publish | ||
- name: Publish to OpenVSX | ||
env: | ||
VSX_PAT: ${{ secrets.VSX_PAT }}: | ||
run: npx ovsx publish -p $VSX_PAT | ||