Skip to content

Commit 80a461e

Browse files
author
Lukas Neubert
authored
package using vsce (#4)
1 parent 28b3743 commit 80a461e

File tree

4 files changed

+1348
-80
lines changed

4 files changed

+1348
-80
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ on:
77
- master
88

99
jobs:
10+
compile-and-package:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: "14"
17+
- name: Install dependencies
18+
run: npm install
19+
- name: Compile
20+
run: npm run compile
21+
- name: VSCE package
22+
run: npm run package
1023
code-style:
1124
runs-on: ubuntu-latest
1225
steps:

.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
.github/
12
.vscode/
23
src/
4+
**/*.map
35
.gitignore
46
tsconfig.json
57
.eslintrc.json

0 commit comments

Comments
 (0)