Skip to content

Commit

Permalink
Fix setup in integration tests (#3254)
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-fernandez authored Jun 20, 2023
1 parent 30ca014 commit 51dd34b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/node/setup
- run: yarn install
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
# Disable core dumps since some integration tests intentionally abort and core dump generation takes around 5-10s
- run: yarn install
- run: sudo sysctl -w kernel.core_pattern='|/bin/false'
- run: yarn test:integration

Expand All @@ -39,11 +38,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/node/setup
- run: yarn install
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- run: yarn install
- run: yarn test:integration:${{ matrix.framework }}

integration-cypress:
Expand Down

0 comments on commit 51dd34b

Please sign in to comment.