fix: edit button styling and precise hit area #248
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: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - .github/workflows/ci.yml | |
| - Cargo.lock | |
| - Cargo.toml | |
| - slophammer.yml | |
| - fixtures/** | |
| - captures/** | |
| - plugins/** | |
| - scripts/** | |
| - src/** | |
| - tests/** | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/ci.yml | |
| - Cargo.lock | |
| - Cargo.toml | |
| - slophammer.yml | |
| - fixtures/** | |
| - captures/** | |
| - plugins/** | |
| - scripts/** | |
| - src/** | |
| - tests/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| name: verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust | |
| run: | | |
| rustup toolchain install stable --profile minimal | |
| rustup default stable | |
| - name: Install Rust quality tools | |
| run: | | |
| rustup component add llvm-tools-preview | |
| cargo install cargo-llvm-cov --locked | |
| cargo install cargo-audit --locked | |
| cargo install cargo-mutants --locked | |
| cargo install slophammer-rs --version 0.4.0 --locked | |
| - name: Install Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| - name: Run local CI gate | |
| run: scripts/ci-local.sh |