feat(firefox): add firefox backup. All plugins, etc #23
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 | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**/*.css' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**/*.css' | |
jobs: | |
lint: | |
name: Check CSS with stylelint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Stylelint and config | |
run: npm install stylelint stylelint-config-standard --save-dev | |
- name: Run stylelint | |
run: npx stylelint "**/*.{css,scss}" ".*/**/*.{css,scss}" --config .stylelintrc.json |