Commit be7c591
authored
ci: add CI job for VS Code extension (#444)
* ci: add CI job for VS Code extension
Add .github/workflows/vscode-ext.yml to validate the VS Code extension
(extensions/vscode/) on every push/PR that touches that directory.
The workflow runs on the self-hosted node:24 container (matching the
existing CI conventions) and executes:
- yarn install --frozen-lockfile (lockfile integrity)
- yarn lint (ESLint)
- yarn compile (TypeScript + webpack dev build)
- yarn test (Jest, all 10 test suites)
Path filter (extensions/vscode/**) ensures Go-only changes do not
trigger this job. No vsce package step — packaging is a release concern.
Fixes the gap identified in #441: dependency PRs from dependabot (#437)
will now receive real build and test signal before merging.
Closes #441
* ci: pin node image version and add yarn dependency caching
- Pin node container image to node:24.0.0 for reproducible builds
- Add actions/setup-node@v4 with yarn cache for extensions/vscode/yarn.lock
to speed up CI workflow runs
* ci: use node:24 image container tag
* ci: pin node version to 24.4.1
* ci: use actions/cache@v4 for yarn package caching
* ci: remove redundant push trigger on main1 parent 484b513 commit be7c591
1 file changed
Lines changed: 50 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
0 commit comments