From d450ba4349a13abe001da303323169474ed30d90 Mon Sep 17 00:00:00 2001 From: Matthew Pereira Date: Mon, 8 Jul 2024 10:26:57 -0700 Subject: [PATCH] troubleshoot Lint workflow --- .github/workflows/lint.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 060e9a74..dcfa8b51 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -27,16 +27,16 @@ jobs: node-version: ${{ matrix.node }} cache: yarn - - name: Install dependencies - run: yarn install --immutable - - name: Install foundry-toolchain uses: foundry-rs/foundry-toolchain@v1 with: version: nightly + - name: Install dependencies + run: yarn install --immutable + - name: Run foundry node, deploy contracts (& generate contracts typescript output) - run: yarn fork & yarn deploy:factory + run: yarn fork && yarn deploy:factory env: DEPLOYER_PRIVATE_KEY: ${{ secrets.DEPLOYER_PRIVATE_KEY }} SEPOLIA_RPC_URL: ${{ secrets.SEPOLIA_RPC_URL }}