fix for spell check errors in headings causing gradients to disappear… #86
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: stylelint | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
stylelint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Run Stylelint | |
run: npm run lint |