Skip to content

Commit

Permalink
explicit reporting for e2e tests failing for code problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam McKee committed Oct 16, 2024
1 parent d8b3bae commit 17ada1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:
run: |
corepack enable && corepack prepare pnpm@latest --activate
pnpm i
- name: typecheck frontend
run: pnpm exec tsc --build
working-directory: frontend
- name: typecheck offline
run: pnpm exec tsc --build
working-directory: offline
- name: playwright
env:
CI: true
Expand Down
7 changes: 6 additions & 1 deletion e2e/start_app.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#!/bin/bash
set -e

pushd ../frontend
pnpm build:tsc
pnpm exec tsc --build
popd

pushd ../offline
pnpm exec tsc --build
popd

pushd ../offline
Expand Down

0 comments on commit 17ada1b

Please sign in to comment.