From 028e550c89b9402a1f568a7e4074e66e56254350 Mon Sep 17 00:00:00 2001 From: pablomendezroyo Date: Mon, 28 Oct 2024 17:15:01 +0100 Subject: [PATCH] skip int test for release --- .github/workflows/main.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1851cb94..f9a5646a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,26 +37,26 @@ jobs: env: INFURA_MAINNET_KEY: ${{ secrets.INFURA_MAINNET_KEY }} - integration-test: - runs-on: ubuntu-latest - name: In app integration tests - steps: - - uses: actions/checkout@v4 - - name: Enable Corepack - run: corepack enable - - name: Setup node - uses: actions/setup-node@v4 - with: - node-version: "20" - cache: "yarn" - - run: yarn # Caching only saves 30s - - run: yarn build - - run: yarn test:int + # integration-test: + # runs-on: ubuntu-latest + # name: In app integration tests + # steps: + # - uses: actions/checkout@v4 + # - name: Enable Corepack + # run: corepack enable + # - name: Setup node + # uses: actions/setup-node@v4 + # with: + # node-version: "20" + # cache: "yarn" + # - run: yarn # Caching only saves 30s + # - run: yarn build + # - run: yarn test:int release: name: Release runs-on: ubuntu-latest - needs: [unit-test, integration-test] + needs: [unit-test] if: github.event_name == 'workflow_dispatch' steps: - name: Verify input