Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:
include:
- os: ubuntu-latest
- os: namespace-profile-mac-default
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down Expand Up @@ -165,7 +166,7 @@ jobs:
run: pnpm run bootstrap-cli

- name: Run CLI lint
run: VITE_LOG=error pnpm lint
run: VITE_LOG=error,which=trace pnpm lint

- name: Install Playwright browsers
run: pnpx playwright install chromium
Expand Down
43 changes: 29 additions & 14 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ vite_task = { git = "https://github.com/voidzero-dev/vite-task", rev = "refs/pul
vite_workspace = { git = "https://github.com/voidzero-dev/vite-task", rev = "refs/pull/11/head" }
wax = "0.6.0"

napi = { version = "3.0.0", default-features = false, features = ["async", "error_anyhow"] }
napi = { version = "=3.2.0", default-features = false, features = ["async", "error_anyhow"] }
napi-build = "2"
napi-derive = { version = "3.0.0", default-features = false, features = ["type-def", "strict"] }
napi-derive = { version = "=3.2.0", default-features = false, features = ["type-def", "strict"] }

[profile.dev]
# Disabling debug info speeds up local and CI builds,
Expand Down
Loading