krata/.github/workflows/style-lint.yml

25 lines
367 B
YAML
Raw Normal View History

name: 'Style Lint'
on:
push:
paths:
- '_sass/**.scss'
2022-12-04 17:30:37 +01:00
tags-ignore:
- '**'
pull_request:
paths:
- '_sass/**.scss'
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- run: npm i
- run: npm test