We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fb9a4e + d2baf62 commit 2b793f1Copy full SHA for 2b793f1
1 file changed
.github/workflows/linter.yml
@@ -1,17 +1,14 @@
1
----
2
name: Linter
3
4
on:
5
- push:
6
pull_request:
7
- branches: [main, master]
8
9
jobs:
10
- changes:
+ check-changes:
11
name: Check Changes
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Checkout Code
+ - name: Checkout
15
uses: actions/checkout@v3
16
17
- name: Check Changes
@@ -26,7 +23,7 @@ jobs:
26
23
27
24
eslint:
28
25
name: ESLint
29
- needs: changes
+ needs: check-changes
30
if: needs.changes.outputs.eslint == 'true'
31
32
@@ -43,7 +40,7 @@ jobs:
43
40
44
41
stylelint:
45
42
name: Stylelint
46
47
if: needs.changes.outputs.stylelint == 'true'
48
49
0 commit comments