Update css_lint.yml #12
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: CSS Syntax Checking | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - WaveFox-Nightly | |
| pull_request: | |
| branches: | |
| - main | |
| - WaveFox-Nightly | |
| jobs: | |
| Lint_CSS: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check the repository | |
| uses: actions/checkout@v4 | |
| - name: Run Stylelint | |
| run: | | |
| npm install stylelint stylelint-config-standard | |
| npx stylelint "**/*.css" --config '{"extends": "stylelint-config-standard"}' --formatter string |