Skip to content

Commit

Permalink
ci: List current directory structure to aid debugging failing CI
Browse files Browse the repository at this point in the history
End-to-end tests fail as `/_app/immutable/workers/assets/smithereens_bg.wasm` can not be found so using `tree -fhD` to
list the current directory structure to see where the files are.

Locally they are in two locations (likely only one is being used!)

```
(pgfinder2024) ❱ fd smithereens_bg.wasm
web/smithereens/pkg/smithereens_bg.wasm
web/smithereens/pkg/smithereens_bg.wasm.d.ts
web/src/lib/pkg/smithereens_bg.wasm
web/src/lib/pkg/smithereens_bg.wasm.d.ts
```
  • Loading branch information
slackline committed Jun 12, 2024
1 parent c4b6591 commit 1b470ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/e2e-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ jobs:
run: pnpm exec playwright install --with-deps

- name: Run Playwright Tests
run: pnpm test
run: |
tree -fhD # Looking for location of smithereens_bg.wasm
pnpm test

0 comments on commit 1b470ef

Please sign in to comment.