Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,22 @@ jobs:
- name: Install dependencies
run: pnpm install --no-frozen-lockfile --ignore-scripts

- name: Get Playwright version
id: playwright-version
run: echo "version=$(jq -r '.devDependencies.playwright' package.json)" >> $GITHUB_OUTPUT

- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
node_modules/.pnpm/playwright-core*/node_modules/playwright-core/.local-browsers
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: pnpm exec playwright install chromium --with-deps --only-shell

- name: Build Storybook
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
"storybook-addon-remix-react-router": "5.0.0",
"typescript": "5.8.2",
"typescript-eslint": "8.30.1",
"vite": "7.0.1",
"vite-plugin-checker": "0.9.3",
"vite": "7.0.5",
"vite-plugin-checker": "0.10.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4",
"wait-on": "7.2.0"
Expand Down
Loading