We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f5cd84 commit 792dc4aCopy full SHA for 792dc4a
.github/workflows/bundle.yml
@@ -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
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
30
+ name: tarantool-local-lua-debugger-vscode
31
+ path: tarantool-local-lua-debugger-vscode-*.vsix
0 commit comments