From 55b09b5296785a9f27a68328d524ca2913290807 Mon Sep 17 00:00:00 2001 From: Emily Williams Date: Thu, 19 Sep 2024 11:20:52 -0400 Subject: [PATCH] init submodules --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e9fc64bf..b9cc276c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,14 +36,16 @@ jobs: node-version: 18 registry-url: 'https://registry.npmjs.org' - - name: Install dependencies and compile contracts - run: yarn install --immutable --immutable-cache - - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: version: nightly + - name: Install dependencies + run: | + yarn install --immutable --immutable-cache + git submodule update --init --recursive + - name: Compile run: yarn compile