Permalink
Cannot retrieve contributors at this time
executable file
21 lines (20 sloc)
702 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/.github/workflows/script/check-js.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
# Sanity check that repo is clean to start with | |
if [ ! -z "$(git status --porcelain)" ]; then | |
# If we get a fail here then this workflow needs attention... | |
>&2 echo "Failed: Repo should be clean before testing!" | |
exit 1 | |
fi | |
# Wipe the lib directory incase there are extra unnecessary files in there | |
rm -rf lib | |
# Generate the JavaScript files | |
npm run-script build | |
# Check that repo is still clean | |
if [ ! -z "$(git status --porcelain)" ]; then | |
# If we get a fail here then the PR needs attention | |
>&2 echo "Failed: JavaScript files are not up to date. Run 'npm run-script build' to update" | |
git status | |
exit 1 | |
fi | |
echo "Success: JavaScript files are up to date" |