Skip to content

Merge pull request #276 from CelticBoozer/development #25

Merge pull request #276 from CelticBoozer/development

Merge pull request #276 from CelticBoozer/development #25

Workflow file for this run

---
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