Update test-hosted-runners.yml

This commit is contained in:
Fabian Aguilar Gomez
2024-09-06 15:49:08 -05:00
committed by GitHub
parent aefddd41c8
commit b73e0a2c88

View File

@@ -51,3 +51,7 @@ jobs:
- name: Check for absence of symlinks
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
shell: bash
- name: Check for absence of hidden files
run: if [ $(find artifact2 -regex ".*/\..*" | wc -l) != 0 ]; then echo "Hidden files found"; exit 1; fi
shell: bash