Skip to content

Commit 00123e5

Browse files
authored
Merge pull request #155 from github/add-module-size-analysis
Add module size analysis
2 parents 264c670 + 0f45817 commit 00123e5

File tree

13 files changed

+10549
-25
lines changed

13 files changed

+10549
-25
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'build-test'
22
on: # rebuild any PRs and main branch changes
33
pull_request:
4-
branches-ignore:
4+
branches-ignore:
55
- 'dependabot/**'
66
pull_request_target:
77
branches:
@@ -24,6 +24,13 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v3
27+
- uses: ./
28+
with:
29+
current-stats-json-path: ./__tests__/__mocks__/new-stats-with-chunks.json
30+
base-stats-json-path: ./__tests__/__mocks__/old-stats-with-chunks.json
31+
github-token: ${{ secrets.GITHUB_TOKEN }}
32+
title: With chunk and module information
33+
- uses: actions/checkout@v3
2734
- uses: ./
2835
with:
2936
current-stats-json-path: ./__tests__/__mocks__/new-stats-assets.json
@@ -37,10 +44,10 @@ jobs:
3744
title: Flipped around
3845
- uses: ./
3946
with:
40-
current-stats-json-path: ./__tests__/__mocks__/non-existant.json
41-
base-stats-json-path: ./__tests__/__mocks__/non-existant.json
47+
current-stats-json-path: ./__tests__/__mocks__/non-existent.json
48+
base-stats-json-path: ./__tests__/__mocks__/non-existent.json
4249
github-token: ${{ secrets.GITHUB_TOKEN }}
43-
title: Non existant
50+
title: Non existent
4451
- uses: ./
4552
with:
4653
current-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json

0 commit comments

Comments
 (0)