UI/Qt: Consistently place the tab close button across platforms #30380
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: Lint Code | |
| on: [ push, pull_request ] | |
| jobs: | |
| lint: | |
| runs-on: blacksmith-2vcpu-ubuntu-2404 | |
| if: github.repository == 'LadybirdBrowser/ladybird' | |
| container: | |
| image: ghcr.io/ladybirdbrowser/ladybird-ci:2026.05.4 | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Set Up Environment | |
| uses: ./.github/actions/setup | |
| with: | |
| os: 'Linux' | |
| arch: 'x86_64' | |
| type: 'lint' | |
| - name: Lint | |
| run: "${GITHUB_WORKSPACE}/Meta/lint-ci.sh" |