Skip to content

Commit e600cbf

Browse files
committed
add reports
1 parent 988ef2f commit e600cbf

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- '**'
6+
- "**"
77

88
jobs:
99
build:
@@ -23,9 +23,16 @@ jobs:
2323

2424
- name: Install Playwright Browsers
2525
run: npx playwright install chromium
26-
26+
2727
# note: we need to build before running tests because it's a chrome extension
2828
- name: Test
2929
run: |
3030
yarn build
31-
yarn test:e2e
31+
yarn test:e2e
32+
33+
- uses: actions/upload-artifact@v4
34+
if: ${{ !cancelled() }}
35+
with:
36+
name: playwright-report
37+
path: playwright-report/
38+
retention-days: 30

0 commit comments

Comments
 (0)