Skip to content

[pt-br] sync translated content #5103

[pt-br] sync translated content

[pt-br] sync translated content #5103

Workflow file for this run

name: JSON lint
on:
pull_request:
branches:
- main
paths:
- .nvmrc
- "**/*.json"
- "**/*.jsonc"
- .github/workflows/pr-check_json.yml
permissions: {}
jobs:
docs:
# do not run on PRs in forks
if: github.repository == 'mdn/translated-content'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version-file: ".nvmrc"
cache: npm
- name: Install
run: npm ci
env:
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint JSON files
run: npm run lint:json