fix(deps): update minisign to 0.9 with backward-compatible key handling #688
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: Check Node.js bindings | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/check-nodejs-bindings.yml" | |
| - "crates/packager/**" | |
| - "crates/updater/**" | |
| - "crates/resource-resolver/**" | |
| - "bindings/*/nodejs/**" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/check-nodejs-bindings.yml" | |
| - "crates/packager/**" | |
| - "crates/updater/**" | |
| - "crates/resource-resolver/**" | |
| - "bindings/*/nodejs/**" | |
| env: | |
| RUST_BACKTRACE: 1 | |
| CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.platform }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v6 | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: pnpm install | |
| - run: pnpm build |