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:
Charles Gagnon
2023-07-05 17:15:27 -07:00
committed by GitHub
parent 76232ffb25
commit 0dda36cd6e
18 changed files with 150 additions and 118 deletions

6
.github/workflows/check-clean-git-state.sh vendored Executable file
View 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