Skip to content

Commit bee7a0e

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

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/bundle.yml

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

0 commit comments

Comments
 (0)