Skip to content

ci: cache Playwright browser binaries #436

ci: cache Playwright browser binaries

ci: cache Playwright browser binaries #436

Workflow file for this run

on:
pull_request:
push:
branches: [master]
jobs:
test:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.3
- name: Get Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package.json').devDependencies['@playwright/test'])" >> $GITHUB_ENV
- name: Cache Playwright binaries
uses: actions/cache@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Install dependencies
run: |
bun install
bun playwright install --with-deps
- name: Build library
run: bun build:lib
- name: Run unit tests
run: bun test:unit
- name: Run e2e tests
run: bun test:e2e