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 bee7a0eCopy full SHA for bee7a0e
.github/workflows/bundle.yml
@@ -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
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
29
+ name: tarantool-local-lua-debugger-vscode
30
+ path: tarantool-local-lua-debugger-vscode-*.vsix
0 commit comments