Skip to content

Repository housekeeping #302

Repository housekeeping

Repository housekeeping #302

Workflow file for this run

name: css
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
jobs:
lint:
name: Static analysis for CSS
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code base
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup stylelint
run: npm install --save-dev stylelint stylelint-config-standard-less
- name: Run stylelint
run: npx stylelint "asset/css/*"