Stop hard-coding reference link and switch to intersphinx (#108) #168
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: Textlint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| textlint: | |
| name: textlint (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: | |
| - ja | |
| - en | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install Task | |
| uses: arduino/setup-task@v2 | |
| with: | |
| version: 3.x | |
| repo-token: ${{ github.token }} | |
| - name: Install dependencies | |
| run: LANG=${{ matrix.language }} task textlint |