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