Skip to content

Commit 9ba43e1

Browse files
committed
Revert "ci: use ubuntu-latest"
This reverts commit eac3376.
1 parent eac3376 commit 9ba43e1

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ on:
55

66
jobs:
77
test:
8-
runs-on: ubuntu-latest
8+
runs-on: macos-14
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: oven-sh/setup-bun@v2
1212
- uses: actions/cache@v4
1313
id: playwright-cache
1414
with:
15-
path: /home/runner/.cache/ms-playwright
15+
path: /Users/runner/Library/Caches/ms-playwright
1616
key: ${{ runner.os }}-playwright-${{ hashFiles('bun.lock') }}
1717

1818
- name: Install dependencies
@@ -23,10 +23,8 @@ jobs:
2323
if: steps.playwright-cache.outputs.cache-hit != 'true'
2424

2525
- name: Install Playwright with cache
26+
run: bun playwright install
2627
if: steps.playwright-cache.outputs.cache-hit == 'true'
27-
run: |
28-
bun playwright install
29-
bun playwright install-deps
3028

3129
- name: Build library
3230
run: bun build:lib

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
runs-on: macos-14
99
permissions:
1010
contents: read
1111
id-token: write

0 commit comments

Comments
 (0)