From e600cbfa71c83dcb12aefe5d516c6cf99fb7641b Mon Sep 17 00:00:00 2001 From: renardeinside Date: Sun, 1 Dec 2024 12:27:03 +0100 Subject: [PATCH] add reports --- .github/workflows/ci.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bc7935..e3092cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - '**' + - "**" jobs: build: @@ -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 \ No newline at end of file + yarn test:e2e + + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 30