Add Dr. Payal Mital's story (#142) #482
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 | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: Add problem matcher | |
uses: xt0rted/stylelint-problem-matcher@v1 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint JavaScript, Sass; check format | |
run: npm run lint | |
md: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Lint story front matter | |
uses: namoscato/splinter@v1 | |
with: | |
src_paths: content/story |