-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into removePromiseResolveValueOptionality
- Loading branch information
Showing
463 changed files
with
13,270 additions
and
3,151 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 |
---|---|---|
|
@@ -3,6 +3,11 @@ name: Sync branch with master | |
on: | ||
repository_dispatch: | ||
types: sync-branch | ||
workflow_dispatch: | ||
inputs: | ||
branch_name: | ||
description: 'Target Branch Name' | ||
required: true | ||
|
||
jobs: | ||
build: | ||
|
@@ -15,15 +20,15 @@ jobs: | |
node-version: 12.x | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.client_payload.branch_name }} | ||
ref: ${{ github.event.inputs.branch_name || github.event.client_payload.branch_name }} | ||
# This does a test post-merge and only pushes the result if the test succeeds | ||
# required client_payload members: | ||
# branch_name - the target branch | ||
- run: | | ||
git config user.email "[email protected]" | ||
git config user.name "TypeScript Bot" | ||
git fetch origin master | ||
git merge master --no-ff | ||
git merge origin/master --no-ff | ||
npm install | ||
npm test | ||
git push |
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,28 @@ | ||
name: Update LKG | ||
|
||
on: | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use node version 12 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: Configure Git and Update LKG | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "TypeScript Bot" | ||
npm install | ||
gulp LKG | ||
npm test | ||
git diff | ||
git add ./lib | ||
git commit -m "Update LKG" | ||
git push |
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ language: node_js | |
|
||
node_js: | ||
- 'node' | ||
- '12' | ||
- '10' | ||
- '8' | ||
|
||
env: | ||
- workerCount=3 timeout=600000 | ||
|
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.