Skip to content

Commit

Permalink
Merge pull request #155 from github/add-module-size-analysis
Browse files Browse the repository at this point in the history
Add module size analysis
  • Loading branch information
camchenry authored Aug 1, 2022
2 parents 264c670 + 0f45817 commit 00123e5
Show file tree
Hide file tree
Showing 13 changed files with 10,549 additions and 25 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
branches-ignore:
branches-ignore:
- 'dependabot/**'
pull_request_target:
branches:
Expand All @@ -24,6 +24,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/new-stats-with-chunks.json
base-stats-json-path: ./__tests__/__mocks__/old-stats-with-chunks.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: With chunk and module information
- uses: actions/checkout@v3
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/new-stats-assets.json
Expand All @@ -37,10 +44,10 @@ jobs:
title: Flipped around
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/non-existant.json
base-stats-json-path: ./__tests__/__mocks__/non-existant.json
current-stats-json-path: ./__tests__/__mocks__/non-existent.json
base-stats-json-path: ./__tests__/__mocks__/non-existent.json
github-token: ${{ secrets.GITHUB_TOKEN }}
title: Non existant
title: Non existent
- uses: ./
with:
current-stats-json-path: ./__tests__/__mocks__/old-stats-assets.json
Expand Down
Loading

0 comments on commit 00123e5

Please sign in to comment.