chore: Rename to Recall #281
Workflow file for this run
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
name: 'Contracts: Storage check' | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
RPC_URL: https://filecoin-calibration.chainup.net/rpc/v1 | |
PRIVATE_KEY: 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef | |
jobs: | |
storage: | |
name: Storage layout check | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.BUILTIN_ACTORS_DEPLOY_KEY }} | |
${{ secrets.CONTRACTS_DEPLOY_KEY }} | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: 'pnpm' | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
cache: false | |
- name: Install Node dependencies | |
run: pnpm install | |
- name: Storage check | |
run: pnpm exec hardhat storage-layout --check |