-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (66 loc) · 2.3 KB
/
css-lint.yml
File metadata and controls
79 lines (66 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
##################################################################################
#
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
#
##################################################################################
name: "CSS Lint"
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
- "dev"
jobs:
analyze_sources:
name: "Check if there any CSS code to work on?"
runs-on: ubuntu-latest
outputs:
# Export 'filter' step check result so next step can use it.
run_action: ${{ steps.filter.outputs.src }}
# These are source files matching our filter that are affected by the PR.
changed_files: ${{ steps.filter.outputs.src_files }}
steps:
# https://github.com/marketplace/actions/checkout
- name: "Checkout sources"
uses: actions/checkout@v4
# https://github.com/marketplace/actions/paths-changes-filter
- name: "Look for changes that matters for us…"
uses: dorny/paths-filter@v3
id: filter
with:
# Token is optional for public repos, but required for private repos
token: ${{ secrets.GITHUB_TOKEN }}
list-files: 'escape'
filters: |
src:
- 'Resources/public/*.css'
- name: "Will action step be run?"
run: |
found="NO"
[[ ${{ steps.filter.outputs.src }} == 'true' ]] && found="YES"
echo "run_action=${found}" >> $GITHUB_OUTPUT
echo -e "\n****************************************\n"
echo "${found}"
echo -e "****************************************"
check:
name: "Run tools…"
# Will run only if analyze_sources determined it is needed.
needs: analyze_sources
if: needs.analyze_sources.outputs.run_action == 'true'
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: "Checkout repository…"
uses: actions/checkout@v4
# https://github.com/marketplace/actions/setup-node
- name: "Setup Node.js"
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: "Installing dependencies…"
run: npm install
- name: "Running Stylelint…"
run: npx stylelint "Resources/public/*.css"