forked from scratchfoundation/scratch-vm
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'LLK/develop' into xcratch-dev
- Loading branch information
Showing
84 changed files
with
53,376 additions
and
15,158 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,73 @@ | ||
version: 2.1 | ||
orbs: | ||
commitlint: conventional-changelog/commitlint@1.0.0 | ||
node: circleci/node@5 | ||
aliases: | ||
- &release-branches | ||
- develop | ||
- /^hotfix\// | ||
commands: | ||
deploy_gh_pages: | ||
steps: | ||
- run: | ||
name: deploy to GH Pages | ||
command: | | ||
if [ -n "$GH_PAGES_REPO" ]; then | ||
export GIT_AUTHOR_EMAIL="$(git log --pretty=format:"%ae" -n1)" | ||
export GIT_AUTHOR_NAME="$(git log --pretty=format:"%an" -n1)" | ||
export GIT_COMMITTER_EMAIL="${GIT_AUTHOR_EMAIL}" | ||
export GIT_COMMITTER_NAME="${GIT_AUTHOR_NAME}" | ||
npm run deploy -x -r $GH_PAGES_REPO | ||
fi | ||
jobs: | ||
build_no_release: | ||
executor: node/default # defaults to LTS | ||
steps: | ||
- checkout | ||
- node/install-packages | ||
- run: npm test | ||
- run: npm run build | ||
- deploy_gh_pages | ||
build_and_release: | ||
executor: node/default # defaults to LTS | ||
steps: | ||
- checkout | ||
- node/install-packages | ||
- run: npm test | ||
- run: npm run build | ||
- deploy_gh_pages | ||
- run: npx semantic-release | ||
update_i18n: | ||
executor: node/default # defaults to LTS | ||
steps: | ||
- checkout | ||
- node/install-packages | ||
- run: npm run i18n:src && npm run i18n:push | ||
workflows: | ||
version: 2 | ||
commitlint: | ||
jobs: | ||
- commitlint/lint: | ||
target-branch: develop | ||
build_no_release: | ||
jobs: | ||
- build_no_release: | ||
filters: | ||
branches: | ||
ignore: *release-branches | ||
build_and_release: | ||
jobs: | ||
- build_and_release: | ||
filters: | ||
branches: | ||
only: *release-branches | ||
update_i18n: | ||
jobs: | ||
- update_i18n: | ||
context: transifex | ||
triggers: | ||
- schedule: | ||
cron: 0 0 * * * # daily at midnight UTC = 7-8pm US Eastern | ||
filters: | ||
branches: | ||
only: develop |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text eol=lf |
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit $1 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.