Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpaige committed Jan 2, 2025
1 parent 42bbb15 commit 7a47eb3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ jobs:
role-to-assume: "${{ secrets.AWS_OIDC_ROLE_TO_ASSUME }}"
aws-region: us-east-1
role-duration-seconds: 10800
- name: Install dependencies
run: bun install
- name: Add Node.js bin to PATH
run: echo "PATH=$(pwd)/node_modules/.bin:\$PATH" >> $GITHUB_ENV
- name: Test
run: bun run coverage
- name: Upload Coverage
Expand All @@ -119,6 +123,7 @@ jobs:
CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}"
with:
coverageLocations: "coverage/lcov.info:lcov"

# - name: Report React coverage
# uses: davelosert/vitest-coverage-report-action@v2
# with:
Expand Down
6 changes: 4 additions & 2 deletions test/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ export default defineConfig({
workers: process.env.CI ? 4 : undefined,
// Minimal reporter; you could also chain reporters if needed
reporter: [
["list", "json-summary", "json", "html"],
["json", { outputFile: "e2e/playwright-report/index.html" }],
["list"],
["json-summary"],
["json", { outputFile: "e2e/playwright-report/report.json" }],
["html", { outputFolder: "e2e/playwright-report", open: "never" }],
],
// Shared settings
use: {
Expand Down

0 comments on commit 7a47eb3

Please sign in to comment.