Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Fix lint error in panel-manager test #16

Fix lint error in panel-manager test

Fix lint error in panel-manager test #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun test
- run: bun run lint
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun run build
- run: bun run vsce-package
- uses: actions/upload-artifact@v4
with:
name: plannotator-webview.vsix
path: "*.vsix"