We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a36ba0c + eebe36c commit bbc42c0Copy full SHA for bbc42c0
.github/workflows/node.js.yml
@@ -98,8 +98,8 @@ jobs:
98
run: |
99
echo "<html><body><pre>" > ./dist/integrity.html
100
shopt -s globstar
101
- for file in src/**/*.test.ts; do md5sum $file; done >> ./dist/integrity.html
102
- for file in src/**/*.test.tsx; do md5sum $file; done >> ./dist/integrity.html
+ find src -type f -name "*.test.ts" -exec md5sum {} + >> ./dist/integrity.html
+ find src -type f -name "*.test.tsx" -exec md5sum {} + >> ./dist/integrity.html
103
md5sum .eslintrc.js >> ./dist/integrity.html
104
md5sum jest.config.js >> ./dist/integrity.html
105
md5sum tsconfig.json >> ./dist/integrity.html
0 commit comments