Update for outdated libraries when using sass #35
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: CSS Code Linting | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
lint-css: | |
name: Lint CSS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the git repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
- name: npm install | |
run: npm install | |
- name: Lint CSS | |
run: npm run lint:scss |