Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
node --version
which npm
npm --version
curl -I https://644bffe327c540a62f0fd260-dogskmzbvg.chromatic.com/
- name: "Ensure desired tool versions"
# The build machine may come with newer tools than we are ready for.
env:
Expand All @@ -60,6 +61,11 @@ jobs:
run: cd src/RealtimeServer && (npm ci || (sleep 3m && npm ci))
- name: "Deps: Frontend npm"
run: cd src/SIL.XForge.Scripture/ClientApp && (npm ci || (sleep 3m && npm ci))
- name: "Deps: Playwright dependencies"
run: |
set -xueo pipefail
cd src/SIL.XForge.Scripture/ClientApp/e2e
sudo npx playwright install-deps

- name: "Build: Backend, RealtimeServer"
run: cd src/RealtimeServer && npm run build
Expand Down
Loading