Skip to content

Commit 792dc4a

Browse files
committed
Add bundle.yml github workflow
1 parent 5f5cd84 commit 792dc4a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/bundle.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Bundle extension
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: '16.8.0'
18+
19+
- uses: actions/cache@v3
20+
with:
21+
path: 'node_modules'
22+
key: os-${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }}
23+
24+
- run: npm ci
25+
26+
- run: npm bundle
27+
28+
- uses: actions/upload-artifact@v3
29+
with:
30+
name: tarantool-local-lua-debugger-vscode
31+
path: tarantool-local-lua-debugger-vscode-*.vsix

0 commit comments

Comments
 (0)