-
Notifications
You must be signed in to change notification settings - Fork 5
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 #1065 from CraveFood/update-node
Bump node version
- Loading branch information
Showing
6 changed files
with
26 additions
and
211 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
v12.1.0 | ||
v16.13.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,22 +27,18 @@ after_success: | |
- git config user.email "[email protected]" || travis_terminate 1; | ||
- git remote set-url origin https://${GH_TOKEN}@github.com/CraveFood/farmblocks.git || travis_terminate 1; | ||
- | | ||
if [ $TRAVIS_EVENT_TYPE == "cron" ]; then | ||
yarn snapshot || travis_terminate 1; | ||
if [ $BRANCH == "master" ]; then | ||
yarn snyk || travis_terminate 1; | ||
snyk monitor || travis_terminate 1; | ||
lerna publish --yes || travis_terminate 1; | ||
yarn build-storybook || travis_terminate 1; | ||
git add docs; | ||
git commit -m "chore(docs): [ci skip] gallery update"; | ||
git push origin "$BRANCH"; | ||
source ./bin/github_get_release_id.sh; | ||
./bin/github_publish_release.sh; | ||
else | ||
if [ $BRANCH == "master" ]; then | ||
yarn snyk || travis_terminate 1; | ||
snyk monitor || travis_terminate 1; | ||
lerna publish --yes || travis_terminate 1; | ||
yarn build-storybook || travis_terminate 1; | ||
git add docs; | ||
git commit -m "chore(docs): [ci skip] gallery update"; | ||
git push origin "$BRANCH"; | ||
source ./bin/github_get_release_id.sh; | ||
./bin/github_publish_release.sh; | ||
else | ||
if [ $TRAVIS_EVENT_TYPE == "push" ]; then | ||
lerna publish --canary --yes --preid "alpha-$BRANCH-$TRAVIS_JOB_NUMBER" || travis_terminate 1; | ||
fi | ||
if [ $TRAVIS_EVENT_TYPE == "push" ]; then | ||
lerna publish --canary --yes --preid "alpha-$BRANCH-$TRAVIS_JOB_NUMBER" || travis_terminate 1; | ||
fi | ||
fi |
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.