Skip to content

Commit 4970ad2

Browse files
committed
Respect exit codes with bash commands
1 parent 43d675a commit 4970ad2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: 18
2222

2323
- name: 🧹 Check code formatting with Prettier
24-
run: find . -name package.json -maxdepth 2 -type f -execdir npm run format:check ';'
24+
run: find . -name package.json -maxdepth 2 -type f -execdir npm run format:check ';+'
2525

2626
- name: 👕 Lint Node.js code with ESLint
27-
run: find . -name package.json -maxdepth 2 -type f -execdir npm run lint ';'
27+
run: find . -name package.json -maxdepth 2 -type f -execdir npm run lint ';+'

0 commit comments

Comments
 (0)