Skip to content

ci: Add stylelint and prettier #6

ci: Add stylelint and prettier

ci: Add stylelint and prettier #6

Workflow file for this run

---
name: stylelint
# yamllint disable-line rule:truthy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Check CSS with stylelint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run stylelint
run: npx stylelint "**/*.scss" --config .stylelintrc.json