Skip to content

try again

try again #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
name: Build and Deploy to VS Code marketplace
permissions:
contents: "read"
id-token: "write"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 22
- run: npm install npm-run-all -D --force
- run: npm install --legacy-peer-deps
- run: npm audit fix --force
- run: npm install -g @vscode/vsce --force
- run: npm run compile
- run: npm run prepublish
- run: vsce package
- run: vsce publish -p ${{ secrets.VSCE_PAT }}