Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4
- uses: actions/cache@v5
id: playwright-cache
with:
path: /Users/runner/Library/Caches/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/bun.lock') }}

- name: Install dependencies
run: bun install
run: bun ci

- name: Install Playwright binaries
run: bunx playwright install --with-deps
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: "20.x"
node-version: 22
registry-url: "https://registry.npmjs.org"

- name: Build package
Expand Down
23 changes: 10 additions & 13 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"@playwright/experimental-ct-svelte": "1.51.1",
"@playwright/test": "1.51.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/bun": "^1.2.19",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"@types/bun": "^1.3.6",
"prettier": "^3.8.0",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "3.59.2",
"svelte-check": "^3.8.6",
"svelte-readme": "^3.6.3",
"typescript": "^5.8.3"
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig, devices } from "@playwright/experimental-ct-svelte";
import { svelte, vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };

export default defineConfig({
testDir: "./",
Expand Down