There was an error while loading. Please reload this page.
1 parent 5ed71ea commit 717c17dCopy full SHA for 717c17d
1 file changed
.github/workflows/test-hosted-runners.yml
@@ -44,14 +44,16 @@ jobs:
44
run: tar -xf artifact2/artifact.tar -C artifact2 && rm artifact2/artifact.tar
45
shell: bash
46
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
+
51
- name: Compare files
- run: diff -qr artifact artifact2
52
+ run: |
53
+ rm artifact/.hidden
54
+ diff -qr artifact artifact2
55
56
57
- name: Check for absence of symlinks
58
run: if [ $(find artifact2 -type l | wc -l) != 0 ]; then echo "Symlinks found"; exit 1; fi
59
-
- - 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 commit comments