-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(sizes): Sites test between master and 2.x branch (#9755)
* ci(sizes): Sites test between master and 2.x branch * ci(sizes): Remove if as its manual trigger
- Loading branch information
1 parent
2122811
commit f447a92
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Sizes Results (master-v2.x) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
# It's convenient to set variables for values used multiple times in the workflow | ||
SKETCHES_REPORTS_PATH: artifacts/sizes-report | ||
RESULT_SIZES_TEST_FILE: SIZES_TEST.md | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
jobs: | ||
sizes-test-results: | ||
name: Sizes Comparsion Results | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 # This step checks out the repository's code at gh-pages branch | ||
with: | ||
ref: gh-pages | ||
|
||
- name: Create folder structure | ||
run: | | ||
mkdir -p artifacts && cd artifacts | ||
mkdir -p sizes-report | ||
mkdir -p sizes-report/master | ||
mkdir -p sizes-report/pr | ||
# master folder is a base for comparison | ||
# pr folder is for comparison with master | ||
- name: Download JSON file | ||
run: | | ||
mv master_cli_compile/*.json artifacts/sizes-report/pr/ | ||
mv v2.x_cli_compile/*.json artifacts/sizes-report/master/ | ||
- name: Report results | ||
uses: P-R-O-C-H-Y/report-size-deltas@sizes_v2 | ||
with: | ||
sketches-reports-source: ${{ env.SKETCHES_REPORTS_PATH }} | ||
github-token: ${{ env.GITHUB_TOKEN }} | ||
destination-file: ${{ env.RESULT_SIZES_TEST_FILE }} | ||
|
||
- name: Append file with action URL | ||
run: | ||
echo "/ [GitHub Action Link](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}})" >> ${{ env.RESULT_SIZES_TEST_FILE }} | ||
|
||
- name: Push to github repo | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add ${{ env.RESULT_SIZES_TEST_FILE }} | ||
git commit -m "Generated Sizes Results (master-v2.x)" | ||
git push origin HEAD:gh-pages |