We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b545a3 commit 11684d6Copy full SHA for 11684d6
.github/workflows/build.yml
@@ -20,6 +20,10 @@ jobs:
20
- name: Install dependencies and build the code
21
run: npm install
22
- name: Verify styling
23
+ id: style_verify
24
run: npm run format-dryrun
25
+ - name: Verify styling failure msg
26
+ if: steps.style_verify.outcome == 'failure'
27
+ run: echo "Please run 'npm run format' before commiting the code!"
28
- name: Run build
29
run: npm run build
0 commit comments