-
Notifications
You must be signed in to change notification settings - Fork 8
40 lines (33 loc) · 1001 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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.47.1
- 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 run test:types
- name: Run e2e tests
run: bun run 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