Skip to content

Commit 222b020

Browse files
committed
Check in CI
1 parent b4f367c commit 222b020

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,12 @@ jobs:
3030

3131
- name: Test
3232
run: npm test
33+
34+
- name: Check scripts are executable
35+
run: |
36+
for i in userTests/*/*.sh; do
37+
if ! [[ -x "$i" ]]; then
38+
echo "File $i is not executable"
39+
exit 1
40+
fi
41+
done

0 commit comments

Comments
 (0)