initial commit
This commit is contained in:
23
.github/workflows/style-lint.yml
vendored
Normal file
23
.github/workflows/style-lint.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: "Style Lint"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master", "hotfix/**"]
|
||||
paths: ["_sass/**/*.scss"]
|
||||
pull_request:
|
||||
paths: ["_sass/**/*.scss"]
|
||||
|
||||
jobs:
|
||||
stylelint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: latest
|
||||
- run: npm i
|
||||
- run: npm test
|
||||
Reference in New Issue
Block a user