Bump markdownlint-cli from 0.41.0 to 0.42.0 #471
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: spell-and-markdown-checks | |
on: | |
pull_request: | |
jobs: | |
check: | |
name: Check all files spelling and markdown files formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up prerequisites - node and yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- name: Set up yarn cache | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install spell and markdown checkers | |
run: | | |
make install/checks/spell-and-markdown | |
- name: Run spell and markdown checkers | |
run: | | |
make run/checks/spell-and-markdown |