diff --git a/.github/workflows/kinto-e2e.yaml b/.github/workflows/kinto-e2e.yaml index 9380e0c8..2ba9d5f3 100644 --- a/.github/workflows/kinto-e2e.yaml +++ b/.github/workflows/kinto-e2e.yaml @@ -17,19 +17,23 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: submodules: recursive - - name: Install dependencies - uses: ./.github/actions/install-dependencies - - name: Set up foundry uses: foundry-rs/foundry-toolchain@v1 with: - cache: false version: nightly + - name: "Restore the cached build" + uses: "actions/cache/restore@v3" + with: + fail-on-cache-miss: true + + - name: Install dependencies + uses: ./.github/actions/install-dependencies + - name: Install and build alto run: pnpm install && pnpm build