『ソフトウェアエンジニア目線で使ってみて便利だったChrome拡張を紹介する』の章の順番を修正 #105
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: textlint | |
| on: | |
| pull_request: | |
| jobs: | |
| textlint: | |
| name: textlint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # with: | |
| # submodules: true | |
| - name: Setup Node/npm | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: textlint-github-check | |
| uses: tsuyoshicho/action-textlint@v3 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-check | |
| textlint_flags: "." | |
| level: 'error' | |
| - name: textlint-github-pr-review | |
| uses: tsuyoshicho/action-textlint@v3 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| textlint_flags: "." | |
| level: 'error' |