-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1168 from OriginTrail/prerelease/testnet
OriginTrail Testnet Release v4.0.6
- Loading branch information
Showing
14 changed files
with
217 additions
and
145 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# !/bin/sh | ||
# set -x | ||
export PATH=/usr/local/bin:$PATH | ||
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$") | ||
ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/eslint" | ||
|
||
# if [[ "$STAGED_FILES" = "" ]]; then | ||
# exit 0 | ||
# fi | ||
|
||
PASS=true | ||
|
||
printf "\nValidating Javascript:\n" | ||
|
||
# Check for eslint | ||
if [[ ! -x "$ESLINT" ]]; then | ||
printf "\t\033[41mPlease install ESlint\033[0m (npm i --save-dev eslint)" | ||
exit 1 | ||
fi | ||
|
||
for FILE in $STAGED_FILES | ||
do | ||
"$ESLINT" "$(git rev-parse --show-toplevel)/$FILE" | ||
if [[ "$?" == 0 ]]; then | ||
printf "\t\033[32mESLint Passed: $FILE\033[0m" | ||
else | ||
printf "\t\033[41mESLint Failed: $FILE\033[0m" | ||
PASS=false | ||
fi | ||
done | ||
|
||
printf "\nJavascript validation completed!\n" | ||
|
||
if ! $PASS; then | ||
printf "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n" | ||
exit 1 | ||
else | ||
printf "\033[42mCOMMIT SUCCEEDED\033[0m\n" | ||
fi | ||
|
||
exit $? |
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 @@ | ||
name-template: 'OriginTrail Release $NEXT_PATCH_VERSION' | ||
tag-template: "$NEXT_PATCH_VERSION" | ||
version-template: "v$MAJOR.$MINOR.$PATCH" | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
labels: | ||
- 'internal process' | ||
- title: '⚠️ Breaking changes' | ||
labels: | ||
- 'breaking change' | ||
change-template: '- $TITLE (#$NUMBER)' | ||
template: | | ||
# Changes | ||
$CHANGES |
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
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 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 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
Oops, something went wrong.