Skip to content

Bump stylelint from 15.2.0 to 15.10.1 (#1402) #197

Bump stylelint from 15.2.0 to 15.10.1 (#1402)

Bump stylelint from 15.2.0 to 15.10.1 (#1402) #197

Workflow file for this run

name: Lint assets
on:
push:
paths:
- '**.js'
- '**.md'
- '**.scss'
- '!src/collections/**.md'
pull_request:
paths:
- '**.js'
- '**.md'
- '**.scss'
- '!src/collections/**.md'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Lint assets
run: npm run lint