chore: add weigh/weight to noun/verb confusion #952
Workflow file for this run
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: Just Checks | |
| on: | |
| push: | |
| branches: ["master", "web-prod"] | |
| pull_request: | |
| branches: ["master"] | |
| merge_group: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| just-checks: | |
| runs-on: ubuntu-latest | |
| name: just ${{ matrix.task }} | |
| strategy: | |
| matrix: | |
| task: | |
| [ | |
| check-rust, | |
| check-js, | |
| test-rust, | |
| test-harperjs, | |
| test-vscode, | |
| test-chrome-plugin, | |
| test-firefox-plugin, | |
| test-obsidian, | |
| ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: extractions/setup-just@v2 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: rustfmt,clippy | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".node-version" | |
| package-manager-cache: false | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Rust Cache | |
| uses: Swatinem/[email protected] | |
| - uses: cargo-bins/cargo-binstall@main | |
| - name: Install `wasm-pack` | |
| run: cargo binstall wasm-pack --force --no-confirm | |
| - name: Install `cargo hack` | |
| run: cargo binstall cargo-hack --force --no-confirm | |
| - name: Run `${{ matrix.task }}` | |
| run: just ${{ matrix.task }} |