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

Commit f1eec68

Browse files
committed
Add GitHub Actions CI workflow
Runs tests, type checking, build, and packages .vsix on push/PR to main. Uploads .vsix as artifact.
1 parent 58a1afd commit f1eec68

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: oven-sh/setup-bun@v2
16+
with:
17+
bun-version: latest
18+
19+
- run: bun install --frozen-lockfile
20+
21+
- run: bun test
22+
23+
- run: bun run lint
24+
25+
- run: bun run build
26+
27+
- run: bun run vsce-package
28+
29+
- uses: actions/upload-artifact@v4
30+
with:
31+
name: plannotator-webview.vsix
32+
path: "*.vsix"

0 commit comments

Comments
 (0)