Skip to content

Commit 717c17d

Browse files
authored
Updates from editor
1 parent 5ed71ea commit 717c17d

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/test-hosted-runners.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,16 @@ jobs:
4444
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
4545
shell: bash
4646

47+
- name: Check for absence of hidden files
48+
run: if [ $(find artifact2 -regex ".*/\..*" | wc -l) != 0 ]; then echo "Hidden files found"; exit 1; fi
49+
shell: bash
50+
4751
- name: Compare files
48-
run: diff -qr artifact artifact2
52+
run: |
53+
rm artifact/.hidden
54+
diff -qr artifact artifact2
4955
shell: bash
5056

5157
- name: Check for absence of symlinks
5258
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
5359
shell: bash
54-
55-
- name: Check for absence of hidden files
56-
run: if [ $(find artifact2 -regex ".*/\..*" | wc -l) != 0 ]; then echo "Hidden files found"; exit 1; fi
57-
shell: bash

0 commit comments

Comments
 (0)