fix: do not resolve package.json deps to node_modules folder #690
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| tags: | |
| - "*" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ !contains(github.event.pull_request.labels.*.name, 'test-flaky-ci') && github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dsherret/rust-toolchain-file@v1 | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: 2.x | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Format | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| cargo fmt --all -- --check | |
| deno fmt --check | |
| - name: Lint (Cargo) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: cargo clippy --all-targets --all-features --release | |
| - name: Build | |
| run: deno task build | |
| - name: Lint (Deno) | |
| run: deno lint | |
| - name: Test (Rust) | |
| run: cargo test --all-targets --all-features --release | |
| - name: Test (Deno) | |
| run: deno task test | |
| jsr: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dsherret/rust-toolchain-file@v1 | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: 2.x | |
| - name: Build | |
| run: deno task build | |
| - name: Publish on tag | |
| run: deno run -A jsr:@david/[email protected] |