-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(no-ref): add version for build v2 * fix(no-ref): add version for build v3 --------- Co-authored-by: Igor Nepipenko <[email protected]>
- Loading branch information
1 parent
854f97a
commit 5b067b1
Showing
6 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,8 @@ fi | |
|
||
npm run test | ||
|
||
npm run cypress:bash | ||
|
||
npm run build | ||
|
||
npm run build:lib |
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin | ||
|
||
set -e | ||
|
||
npm run lint | ||
|
||
output=$(npm run type-coverage) | ||
if echo "$output" | grep -q "lower than "; then | ||
echo "$output" | ||
exit 1 # Terminate the hook script with a non-zero exit code | ||
else | ||
echo "Type coverage is good! 🎉" | ||
fi | ||
|
||
npm run test | ||
|
||
npm run cypress:bash | ||
|
||
npm run build | ||
|
||
npm run build:lib |
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