File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ tags :
8+ - v*
9+ pull_request :
10+
11+ permissions :
12+ contents : write
13+
14+ jobs :
15+ build :
16+ name : Type-check, build, and package
17+ runs-on : ubuntu-latest
18+
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v4
22+
23+ - name : Setup Node.js
24+ uses : actions/setup-node@v4
25+ with :
26+ node-version : 20
27+ cache : npm
28+
29+ - name : Install dependencies
30+ run : npm ci
31+
32+ - name : Type-check and build
33+ run : npm run ci
34+
35+ - name : Package VSIX
36+ run : npm run package -- --out vs-code-check-${{ github.ref_name }}.vsix
37+
38+ - name : Upload VSIX artifact
39+ uses : actions/upload-artifact@v4
40+ with :
41+ name : vs-code-check-vsix
42+ path : vs-code-check-${{ github.ref_name }}.vsix
43+
44+ - name : Publish GitHub Release
45+ if : startsWith(github.ref, 'refs/tags/v')
46+ uses : softprops/action-gh-release@v2
47+ with :
48+ name : VS Code Check ${{ github.ref_name }}
49+ body_path : .github/release-notes/v1.1.0.md
50+ files : vs-code-check-${{ github.ref_name }}.vsix
Original file line number Diff line number Diff line change 11node_modules /
22dist /
33* .vsix
4+ .vscode /
5+ .claude /
6+ .agents /
7+ .codex /
8+ .sisyphus /
9+ * .log
10+ .env
11+ .env. *
Original file line number Diff line number Diff line change 11.vscode /**
2+ .github /**
3+ .claude /**
4+ .agents /**
5+ .codex /**
6+ .sisyphus /**
27node_modules /**
38src /**
49.gitignore
510.git /**
611esbuild.ts
712tsconfig.json
13+ package-lock.json
814* .vsix
915icon.svg
1016** /* .ts
You can’t perform that action at this time.
0 commit comments