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.
check-js.sh
1 parent 1b3a5c6 commit 27406fdCopy full SHA for 27406fd
.github/workflows/script/check-js.sh
@@ -22,6 +22,11 @@ if [ ! -z "$(git status --porcelain)" ]; then
22
git diff --output="$RUNNER_TEMP/js.diff"
23
cat "$RUNNER_TEMP/js.diff" >> $GITHUB_STEP_SUMMARY
24
echo '```' >> $GITHUB_STEP_SUMMARY
25
+
26
+ # Reset transpiled and bundled files to allow other checks to test for changes
27
+ git checkout build lib
28
29
+ # Fail this check
30
exit 1
31
fi
32
echo "Success: JavaScript files are up to date"
0 commit comments