Merge pull request #105 from scpwiki/font-fix #63
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: | |
push: | |
paths: | |
- '*.css' | |
- '.github/workflows/lint.yaml' | |
jobs: | |
lint: | |
name: Check CSS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: npm ci | |
- name: Stylelint | |
run: npm run stylelint | |
- name: Prettier | |
run: npm run prettier |