Skip to content
Draft
Show file tree
Hide file tree
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/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
sudo mv /usr/bin/mandb /usr/bin/mandb-OFF
sudo cp -p /bin/true /usr/bin/mandb

- name: Cache Playwright browsers
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install Playwright Browsers
run: pnpm playwright install --with-deps chromium
working-directory: ./dotcom-rendering
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ Most commands are run from within the dotcom-rendering project but the following
### Storybook

`pnpm storybook` - Runs Storybook for all projects

`pnpm build-storybook` - Builds Storybook for all projects
2 changes: 1 addition & 1 deletion dotcom-rendering/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This container is used in our CICD pipelines for running E2E and regression tests.
# Keep the Node version in sync with `.nvmrc`
FROM node:24
FROM node:24-slim

WORKDIR /opt/app/dotcom-rendering/dotcom-rendering

Expand Down
Loading