ci: upgrade Bun action to v2 #121
This file contains 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] | |
jobs: | |
test: | |
runs-on: macos-latest | |
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-1.45.0 | |
- name: Install dependencies | |
run: bun install | |
- name: Install Playwright binaries | |
run: bun playwright install --with-deps | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
- name: Run unit tests | |
run: bun test:types | |
- name: Run e2e tests | |
run: bun test:e2e | |
- name: Build docs | |
if: github.ref == 'refs/heads/master' | |
run: bun run build | |
- name: Deploy docs | |
if: github.ref == 'refs/heads/master' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist |