Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,6 +35,16 @@ jobs:

- run: pnpm install --frozen-lockfile

# mermaid-export renders through puppeteer, which needs a real Chrome. The
# browser normally arrives via puppeteer's postinstall script, which does not
# run here, so eleven of its tests failed with "Could not find Chrome (ver. …)".
#
# Filtered to the one package that depends on puppeteer. A bare `pnpm exec` runs
# from the workspace root, where the binary does not exist, and fails with
# "Command \"puppeteer\" not found" before it reaches the package that has it.
- name: Install Chrome for puppeteer
run: pnpm --filter mermaid-export exec puppeteer browsers install chrome

- name: Typecheck
run: pnpm typecheck

Expand Down
Loading