Bump remark-lint-fenced-code-marker from 3.1.2 to 4.0.1 in /.config/remark #3561
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: Checking Markdown formatting and providing language suggestions | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| jobs: | |
| remark-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'yarn' | |
| cache-dependency-path: '.config/remark/package.json' | |
| - name: Install reviewdog | |
| uses: reviewdog/action-setup@v1 | |
| with: | |
| reviewdog_version: latest | |
| - name: Install remark dependencies | |
| run: yarn install | |
| working-directory: .config/remark | |
| - name: Run remark-lint with reviewdog | |
| run: .config/remark/remark.sh | |
| env: | |
| INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |