chore(deps-dev): bump markdownlint-cli from 0.35.0 to 0.36.0 #378
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: pr | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: lint | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: set up node | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '18' | |
- name: install dependencies | |
run: npm i | |
- name: run lint check | |
run: npm run lint | |
spellcheck: | |
runs-on: ubuntu-latest | |
name: spellcheck | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: set up node | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '18' | |
- name: install dependencies | |
run: npm i | |
- name: run spellchecker | |
run: npm run spellcheck | |
format: | |
runs-on: ubuntu-latest | |
name: format | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: set up node | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: '18' | |
- name: install dependencies | |
run: npm i | |
- name: run format check | |
run: npm run format |