refactor: quality of life improvements #1553
Workflow file for this run
This file contains hidden or 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
name: Storage Layout | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "dev" | |
jobs: | |
check_storage: | |
name: CI | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: "Generate and prepare the storage reports for current branch" | |
run: | | |
bash bin/storage-report.sh pr | |
- name: Checkout dev | |
env: | |
TARGET: ${{ github.event.pull_request.base.sha }} | |
run: | | |
git fetch origin $TARGET | |
git checkout $TARGET | |
- name: "Generate and prepare the storage reports for target branch" | |
run: | | |
bash bin/storage-report.sh target | |
- name: Compare outputs | |
run: | | |
if diff --unified pr target; then | |
echo "No differences found" | |
else | |
echo "::error::Differences found between PR and target branch storage layouts" | |
exit 1 | |
fi |