fix: handle cjs export assignment side effects #3276
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-Dylint | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - '.github/workflows/ci-dylint.yaml' | |
| - '.github/actions/rustup/**' | |
| - 'crates/**' | |
| - 'linting/**' | |
| - 'Cargo.lock' | |
| - 'Cargo.toml' | |
| - 'rust-toolchain.toml' | |
| merge_group: | |
| types: [checks_requested] | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - v1.x | |
| paths: | |
| - '.github/workflows/ci-dylint.yaml' | |
| - '.github/actions/rustup/**' | |
| - 'crates/**' | |
| - 'linting/**' | |
| - 'Cargo.lock' | |
| - 'Cargo.toml' | |
| - 'rust-toolchain.toml' | |
| tags-ignore: | |
| - '**' | |
| jobs: | |
| dylint: | |
| name: Dylint | |
| runs-on: ${{ fromJSON(vars.LINUX_SELF_HOSTED_RUNNER_LABELS || '"ubuntu-22.04"') }} | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Install Rust Toolchain | |
| uses: ./.github/actions/rustup | |
| with: | |
| save-if: true | |
| key: dylint | |
| - name: Run Cargo codegen | |
| run: cargo codegen | |
| - name: Install Dylint Toolchain | |
| run: rustup toolchain install nightly-2025-10-31 -c rustc-dev -c llvm-tools-preview -c rust-src | |
| - name: Install cargo-dylint | |
| run: cargo install cargo-dylint dylint-link --locked | |
| - name: Run dylint | |
| run: cargo dylint --all |