mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 09:35:39 -05:00
Add back eslint and tsec to basic checks (#23637)
* Add back eslint and tsec to basic checks * ext * enable tsec * Add comments * Add check-clean-git-state * Make executable * update build & distro * Update size * distro
This commit is contained in:
6
.github/workflows/check-clean-git-state.sh
vendored
Executable file
6
.github/workflows/check-clean-git-state.sh
vendored
Executable file
@@ -0,0 +1,6 @@
|
||||
R=`git status --porcelain | wc -l`
|
||||
if [ "$R" -ne "0" ]; then
|
||||
echo "The git repo is not clean after compiling the /build/ folder. Did you forget to commit .js output for .ts files?";
|
||||
git status --porcelain
|
||||
exit 1;
|
||||
fi
|
||||
Reference in New Issue
Block a user