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: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,15 @@ jobs:
with:
global-json-file: global.json

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- uses: pnpm/action-setup@v4
with:
run_install: true

- name: Run ci lint
run: cargo ci lint

Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/typescript-lint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion tools/ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Usage: test

Lints the codebase

Runs rustfmt, clippy, csharpier and generates rust docs to ensure there are no warnings.
Runs rustfmt, clippy, csharpier, TypeScript lint, and generates rust docs to ensure there are no warnings.

**Usage:**
```bash
Expand Down
4 changes: 3 additions & 1 deletion tools/ci/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ enum CiCmd {
Test,
/// Lints the codebase
///
/// Runs rustfmt, clippy, csharpier and generates rust docs to ensure there are no warnings.
/// Runs rustfmt, clippy, csharpier, TypeScript lint, and generates rust docs to ensure there
/// are no warnings.
Lint,
/// Tests Wasm bindings
///
Expand Down Expand Up @@ -428,6 +429,7 @@ fn main() -> Result<()> {
cmd!("dotnet", "csharpier", "--check", ".")
.dir("crates/bindings-csharp")
.run()?;
cmd!("pnpm", "lint").run()?;
// `bindings` is the only crate we care strongly about documenting,
// since we link to its docs.rs from our website.
// We won't pass `--no-deps`, though,
Expand Down
Loading