From d947bf220348d00d41f33944b3c334580f0c9cd7 Mon Sep 17 00:00:00 2001 From: NasgulNexus Date: Thu, 12 Oct 2023 17:59:53 +0200 Subject: [PATCH] fix: add upload test-result --- .github/workflows/ci.yml | 1 + .github/workflows/playwright.yml | 7 +++++++ package.json | 2 +- test-component/playwright/index.scss | 5 ----- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 517c43684c..7f97943e91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,3 +39,4 @@ jobs: run: npm ci - name: Unit Tests run: npm run test + diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a510b77676..4f8691f9aa 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -31,4 +31,11 @@ jobs: name: playwright-reports path: playwright-report retention-days: 1 + - name: Upload Playwright test results to GitHub Actions Artifacts + if: always() + uses: actions/upload-artifact@v3 + with: + name: test-results + path: test-results + retention-days: 1 \ No newline at end of file diff --git a/package.json b/package.json index 8700bdab4b..48d47683f5 100644 --- a/package.json +++ b/package.json @@ -168,4 +168,4 @@ "prettier --write" ] } -} \ No newline at end of file +} diff --git a/test-component/playwright/index.scss b/test-component/playwright/index.scss index fd61382a91..7a17f9ab7f 100644 --- a/test-component/playwright/index.scss +++ b/test-component/playwright/index.scss @@ -1,6 +1 @@ @import '../../styles/styles.scss'; - -body { - font-size: 16px; - font-family: Roboto, sans-serif; -}