This repository was archived by the owner on Sep 6, 2025. It is now read-only.
Better structure with BS and MS resources #2
This file contains hidden or 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 SCSS | |
| on: | |
| push: | |
| paths: | |
| - "_sass/**/*.scss" | |
| pull_request: | |
| paths: | |
| - "_sass/**/*.scss" | |
| jobs: | |
| lint-scss: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Lint SCSS | |
| run: npm run lint:scss |