translation(jp): 20260814 update #3296
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
| # GitHub Actions docs | |
| # https://help.github.com/en/articles/about-github-actions | |
| # https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
| name: Validate Docs | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| node_version: [20] | |
| # Build processes work differently across operating systems, so the | |
| # checks run on each one to make sure anyone can contribute to the | |
| # docs. | |
| os: [windows-latest, macOS-latest] | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: ⚙️ Use Node.js ${{ matrix.node_version }} | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| - name: 🕸️ Install Dependencies | |
| run: npm ci --legacy-peer-deps | |
| - name: 🖌️ Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test | |
| - name: 🔤 Spell Check | |
| run: npm run spellcheck | |
| - uses: ./.github/workflows/actions/check-translations | |
| # Lint and spell check changes should be pushed | |
| # to the branch before the branch is merge eligible. | |
| # | |
| # The translation keys check should not produce any changes. | |
| - name: 🔍 Check Diff | |
| run: git diff --exit-code | |
| shell: bash |