Skip to content

Prettier integration #93

Prettier integration

Prettier integration #93

Workflow file for this run

name: Compile the extension
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up Node 22 📦
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install dependencies 🧰
run: |
npm ci --foreground-scripts
npm install -g @vscode/vsce
- name: Build and package the extension 🔧
run: |
# Equivalent to a dry run of the publish command
# Runs the prepublish script, which runs the compile script
vsce ls