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 3ffe8dd commit 72f5647Copy full SHA for 72f5647
.github/workflows/publish-to-vscode.yml
@@ -34,7 +34,9 @@ jobs:
34
run: npm run test
35
36
- name: 📦 Package test
37
- run: npx vsce package
+ run: |
38
+ npx vsce package
39
+ echo "Size of package: $(du -h *.vsix | cut -f1)" >> $GITHUB_STEP_SUMMARY
40
41
universal:
42
runs-on: windows-latest
.github/workflows/pull-request.yml
@@ -29,7 +29,9 @@ jobs:
29
run: npm run compile
30
31
32
33
test:
name: 📋 Unit Test ${{ matrix.os }}
@@ -51,7 +53,7 @@ jobs:
51
53
cache-dependency-path: package-lock.json
52
54
node-version-file: .nvmrc
55
- - name: Setup Project
56
+ - name: 🛠️ Setup Project
57
run: npm ci
58
59
- name: 📋 Test
0 commit comments