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; -}