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 28b3743 commit 80a461eCopy full SHA for 80a461e
.github/workflows/ci.yml
@@ -7,6 +7,19 @@ on:
7
- master
8
9
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
23
code-style:
24
runs-on: ubuntu-latest
25
steps:
.vscodeignore
@@ -1,5 +1,7 @@
1
+.github/
2
.vscode/
3
src/
4
+**/*.map
5
.gitignore
6
tsconfig.json
.eslintrc.json
0 commit comments