Skip to content

Commit 4943cab

Browse files
authored
h
1 parent ee94100 commit 4943cab

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/build-dev.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: build dev vsix
2+
3+
on:
4+
push:
5+
branches: [dev]
6+
pull_request:
7+
branches: [dev]
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+
with:
28+
name: extension
29+
path: "*.vsix"

0 commit comments

Comments
 (0)