Skip to content

Commit

Permalink
skip int test for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Oct 28, 2024
1 parent 8425193 commit 028e550
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 028e550

Please sign in to comment.