zh-cn: update the translation of HTMLImageElement.naturalHeight
#57716
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: Check Redirects | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| check_redirects: | |
| # do not run on PRs in forks | |
| if: github.repository == 'mdn/translated-content' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| # This is a "required" workflow so path filtering can not be used: | |
| # https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
| # We have to rely on a custom filtering mechanism to run the checks only if required files are modified. | |
| - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
| name: See if any file needs checking | |
| id: filter | |
| with: | |
| filters: | | |
| required_files: | |
| - ".nvmrc" | |
| - "files/**" | |
| - ".github/workflows/pr-check_redirects.yml" | |
| - name: Checkout (content) | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| if: steps.filter.outputs.required_files == 'true' | |
| with: | |
| repository: mdn/content | |
| path: mdn/content | |
| persist-credentials: false | |
| - name: Setup Node.js environment | |
| if: steps.filter.outputs.required_files == 'true' | |
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | |
| with: | |
| node-version-file: mdn/content/.nvmrc | |
| cache: npm | |
| cache-dependency-path: mdn/content/package-lock.json | |
| - name: Install | |
| if: steps.filter.outputs.required_files == 'true' | |
| working-directory: ${{ github.workspace }}/mdn/content | |
| run: npm ci | |
| env: | |
| # https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Check redirects file(s) | |
| if: steps.filter.outputs.required_files == 'true' | |
| env: | |
| CONTENT_ROOT: ${{ github.workspace }}/mdn/content/files | |
| CONTENT_TRANSLATED_ROOT: ${{ github.workspace }}/files | |
| # Used by the `rari` cli to avoid rate limiting issues | |
| # when fetching the latest releases info from the GitHub API. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| working-directory: ${{ github.workspace }}/mdn/content | |
| run: | | |
| npm run content validate-redirects |