Skip to content

146.0+: sync browser, devtools, dom with en-US rev7c9ee016 (2025-11-20) #53

146.0+: sync browser, devtools, dom with en-US rev7c9ee016 (2025-11-20)

146.0+: sync browser, devtools, dom with en-US rev7c9ee016 (2025-11-20) #53

Workflow file for this run

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: "pip install 'moz.l10n[xml]~=0.7.1'"
- run: >
gh pr diff --name-only "$PR_URL" |
xargs python -m moz.l10n.bin.lint --skip-unknown
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{github.event.pull_request.html_url}}