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
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ jobs:
run: pnpm --filter vite-task-tools exec playwright install-deps chromium

- name: Run ignored tests
run: ${{ matrix.cargo_cmd }} test --target ${{ matrix.build_target }} -- --ignored
run: |
pnpm --filter vite-task-tools test
${{ matrix.cargo_cmd }} test --target ${{ matrix.build_target }} -- --ignored

# Windows tests are cross-compiled on a fast Linux runner with cargo-xwin
# (clang-cl + lld-link against the xwin-downloaded MSVC CRT/Windows SDK)
Expand Down Expand Up @@ -281,7 +283,9 @@ jobs:

- name: Run ignored tests
if: matrix.mode == 'ignored'
run: cargo-nextest nextest run --archive-file windows-tests.tar.zst --workspace-remap . --run-ignored ignored-only
run: |
pnpm --filter vite-task-tools test
cargo-nextest nextest run --archive-file windows-tests.tar.zst --workspace-remap . --run-ignored ignored-only

test-musl:
needs: detect-changes
Expand Down Expand Up @@ -335,7 +339,9 @@ jobs:
- uses: oxc-project/setup-node@f46a72f95efdc55273fcd042d61c84e723b2892c # v1.4.1

- name: Run ignored tests
run: cargo test -- --ignored
run: |
pnpm --filter vite-task-tools test
cargo test -- --ignored

fmt:
name: Format and Check Deps
Expand Down Expand Up @@ -374,6 +380,9 @@ jobs:
pnpm build-vite-task-client-types
git diff --exit-code packages/vite-task-client/src/index.d.ts

- name: Check test utility types
run: pnpm --filter vite-task-tools check

done:
runs-on: namespace-profile-linux-x64-default
if: always()
Expand Down
1 change: 1 addition & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[default.extend-words]
ratatui = "ratatui"
PUNICODE = "PUNICODE"
EDN = "EDN"
# Win32 spells `ERROR_FILENAME_EXCED_RANGE` this way.
EXCED = "EXCED"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading
Loading