Skip to content

CSS validator/linter t9 GitHub Actions workflow #3

CSS validator/linter t9 GitHub Actions workflow

CSS validator/linter t9 GitHub Actions workflow #3

Workflow file for this run

name: Lint CSS
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install stylelint
run: npm install -g stylelint stylelint-config-standard
- name: Run stylelint
run: stylelint stylesheets/*.css