Skip to content

Commit 242ed9f

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

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/bundle.yml

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

0 commit comments

Comments
 (0)