Skip to content

Commit 72f5647

Browse files
committed
Updated
1 parent 3ffe8dd commit 72f5647

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/publish-to-vscode.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
run: npm run test
3535

3636
- name: 📦 Package test
37-
run: npx vsce package
37+
run: |
38+
npx vsce package
39+
echo "Size of package: $(du -h *.vsix | cut -f1)" >> $GITHUB_STEP_SUMMARY
3840
3941
universal:
4042
runs-on: windows-latest

.github/workflows/pull-request.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
run: npm run compile
3030

3131
- name: 📦 Package test
32-
run: npx vsce package
32+
run: |
33+
npx vsce package
34+
echo "Size of package: $(du -h *.vsix | cut -f1)" >> $GITHUB_STEP_SUMMARY
3335
3436
test:
3537
name: 📋 Unit Test ${{ matrix.os }}
@@ -51,7 +53,7 @@ jobs:
5153
cache-dependency-path: package-lock.json
5254
node-version-file: .nvmrc
5355

54-
- name: Setup Project
56+
- name: 🛠️ Setup Project
5557
run: npm ci
5658

5759
- name: 📋 Test

0 commit comments

Comments
 (0)