Skip to content

Commit

Permalink
add reports
Browse files Browse the repository at this point in the history
  • Loading branch information
renardeinside committed Dec 1, 2024
1 parent 988ef2f commit e600cbf
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- '**'
- "**"

jobs:
build:
Expand All @@ -23,9 +23,16 @@ jobs:

- name: Install Playwright Browsers
run: npx playwright install chromium

# note: we need to build before running tests because it's a chrome extension
- name: Test
run: |
yarn build
yarn test:e2e
yarn test:e2e
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30

0 comments on commit e600cbf

Please sign in to comment.