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 242ed9fCopy full SHA for 242ed9f
.github/workflows/bundle.yml
@@ -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
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
31
+ name: tarantool-local-lua-debugger-vscode
32
+ path: tarantool-local-lua-debugger-vscode-*.vsix
0 commit comments