build(deps): bump markdownlint-cli2 from 0.13.0 to 0.14.0 #400
Workflow file for this run
This file contains 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: Lint YAML | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- .nvmrc | |
- yarn.lock | |
- "**/*.yml" | |
- .github/workflows/pr-check_yml.yml | |
jobs: | |
docs: | |
# do not run on PRs in forks | |
if: github.repository == 'mdn/translated-content' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install all yarn packages | |
run: yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint markdown files | |
run: yarn lint:yml |