There was an error while loading. Please reload this page.
1 parent ee94100 commit 4943cabCopy full SHA for 4943cab
1 file changed
.github/workflows/build-dev.yaml
@@ -0,0 +1,29 @@
1
+name: build dev vsix
2
+
3
+on:
4
+ push:
5
+ branches: [dev]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20
19
+ cache: npm
20
21
+ - run: npm ci
22
+ - run: npx tsc --noEmit
23
+ - run: node bundle.js --production
24
+ - run: npx vsce package --no-dependencies
25
26
+ - uses: actions/upload-artifact@v4
27
28
+ name: extension
29
+ path: "*.vsix"
0 commit comments