Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.2...v6.0.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
533 B
YAML
26 lines
533 B
YAML
name: Lint Code
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: blacksmith-2vcpu-ubuntu-2404
|
|
if: github.repository == 'LadybirdBrowser/ladybird'
|
|
container:
|
|
image: ghcr.io/ladybirdbrowser/ladybird-ci:2026.05.25
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6.0.3
|
|
|
|
- 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"
|