v7.8.4 #570
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
unit-tests: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install | |
- name: Build library | |
run: bun build:lib | |
- name: Run unit tests | |
run: bun test:unit | |
- name: Run typecheck | |
run: bun test:types | |
e2e-tests: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- uses: actions/cache@v4 | |
id: playwright-cache | |
with: | |
path: /Users/runner/Library/Caches/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('bun.lock') }} | |
- name: Install dependencies | |
run: bun install | |
- name: Install Playwright without cache | |
run: bun playwright install --with-deps | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
- name: Install Playwright with cache | |
run: bun playwright install | |
if: steps.playwright-cache.outputs.cache-hit == 'true' | |
- name: Build library | |
run: bun build:lib | |
- name: Run e2e tests | |
run: bun test:e2e |