build(deps-dev): bump eslint from 8.57.1 to 10.2.0 in /bindings/node #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node bindings (Rust crate) | |
| # Neon npm CLI is version-sensitive; CI validates the native crate until the JS toolchain is fully wired. | |
| on: | |
| push: | |
| branches: [main, develop] | |
| paths: | |
| - "bindings/node/**" | |
| - "engine/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "bindings/node/**" | |
| - "engine/**" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: 1.88.0 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: ". -> target" | |
| - name: cargo check (policyengine-node) | |
| run: cargo check --manifest-path bindings/node/Cargo.toml |