Skip to content

Commit

Permalink
Updates from editor
Browse files Browse the repository at this point in the history
  • Loading branch information
tsusdere authored Sep 9, 2024
1 parent 5ed71ea commit 717c17d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test-hosted-runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,16 @@ jobs:
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
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

- name: Compare files
run: diff -qr artifact artifact2
run: |
rm artifact/.hidden
diff -qr artifact artifact2
shell: bash

- 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

0 comments on commit 717c17d

Please sign in to comment.