We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8bb62 commit 825f733Copy full SHA for 825f733
.github/workflows/99-auto-fix-dependabot-stylelint-updates.yml
@@ -18,15 +18,6 @@ jobs:
18
ref: ${{github.event.pull_request.head.ref}}
19
fetch-depth: 0
20
21
- - name: Set up Node.js
22
- uses: actions/setup-node@v4
23
- with:
24
- node-version-file: ".nvmrc"
25
-
26
- - name: Install dependencies
27
- run: |
28
- npm ci
29
30
- name: Check if Stylelint update PR
31
id: check_pr
32
run: |
@@ -39,6 +30,17 @@ jobs:
39
echo "stylelint_update=false" >> $GITHUB_ENV
40
fi
41
33
+ - name: Set up Node.js
34
+ if: env.stylelint_update == 'true'
35
+ uses: actions/setup-node@v4
36
+ with:
37
+ node-version-file: ".nvmrc"
38
+
+ - name: Install dependencies
+ run: |
42
+ npm ci
43
44
- name: Run Stylelint to format the code
45
if: env.stylelint_update == 'true'
46
0 commit comments