Skip to content

Commit

Permalink
[ci-visibility] Fix random cypress integration tests timeouts (#3255)
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-fernandez authored and tlhunter committed Jun 23, 2023
1 parent af9ec7d commit de0f3de
Show file tree
Hide file tree
Showing 2 changed files with 289 additions and 231 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: [master]
schedule:
- cron: '0 4 * * *'
- cron: "0 4 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
matrix:
version: [16, latest]
framework: [cucumber, cypress, playwright]
framework: [cucumber, playwright]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -46,6 +46,24 @@ jobs:
node-version: ${{ matrix.version }}
- run: yarn test:integration:${{ matrix.framework }}

integration-cypress:
strategy:
matrix:
version: [16, latest]
# 6.7.0 is the minimum version we support
cypress-version: [6.7.0, latest]
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 test:integration:cypress
env:
CYPRESS_VERSION: ${{ matrix.cypress-version }}

lint:
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit de0f3de

Please sign in to comment.