Skip to content

Commit

Permalink
split e2e (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobar79 authored May 31, 2023
1 parent 5bbebc8 commit 4184ba5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
path: tmp
- name: Copy dotenv
run: cat tmp/dotenv >> .env && rm -rf tmp
- name: Run e2e (Chrome)
- name: Run e2e parallel (Chrome)
uses: nick-fields/retry@v2
with:
timeout_minutes: 18
Expand All @@ -121,7 +121,17 @@ jobs:
export BROWSER=chrome
export OS=linux
export CHROMIUM_BIN=$(which chrome)
yarn vitest:parallel && yarn vitest:serial
yarn vitest:parallel
- name: Run e2e serial (Chrome)
uses: nick-fields/retry@v2
with:
timeout_minutes: 18
max_attempts: 3
command: |
export BROWSER=chrome
export OS=linux
export CHROMIUM_BIN=$(which chrome)
yarn vitest:serial
# BRAVE TESTS
# brave-e2e:
# needs: [build]
Expand Down

0 comments on commit 4184ba5

Please sign in to comment.