diff --git a/.github/workflows/storage-analysis.yml b/.github/workflows/storage-analysis.yml index fcfb39f165..192bea20de 100644 --- a/.github/workflows/storage-analysis.yml +++ b/.github/workflows/storage-analysis.yml @@ -15,13 +15,17 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive - # Setup the environment (if needed) - - name: Setup Environment - run: | - # Add commands to setup environment, e.g., install dependencies - # sudo apt-get update - # sudo apt-get install -y your-dependency-here + - uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install + run: yarn workspaces focus @hyperlane-xyz/core + + - name: foundry-install + uses: onbjerg/foundry-toolchain@v1 # Run the command on PR branch - name: Run command on PR branch