-
Notifications
You must be signed in to change notification settings - Fork 14
36 lines (29 loc) · 883 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
on:
pull_request:
push:
branches: [master]
jobs:
test:
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-1.47.1
- 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 unit tests
run: bun test:unit
- name: Run e2e tests
run: bun test:e2e