Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit 9fe5655

Browse files
committed
Update github workflows
1 parent 1ca16bb commit 9fe5655

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-latest, windows-latest]
11+
os: [ubuntu-latest, macos-latest] # also include windows-latest once npm install is fixed
1212

1313
steps:
1414
- uses: actions/checkout@v1

.github/workflows/gh-action-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ jobs:
1717
- name: Run App size diff
1818
uses: ./
1919
with:
20-
baseAppPath: 'test/assets/test.apk'
21-
targetAppPath: 'test/assets/test.apk'
20+
baseAppPath: test/assets/test.apk
21+
baseAppLabel: Base app
22+
targetAppPath: test/assets/test.apk
23+
targetAppLabel: Target app
2224
summaryOutputPath: summary.md
25+
metrics: apkSize, installSize, arscFile, nativeLibs, dexFiles
26+
thresholds: 10, 10, 10, 10, 10
2327

2428
- name: Print summary
2529
run: cat summary.md

0 commit comments

Comments
 (0)