-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: embrace proxies * cleanup * perf proxy structure * embrace proxy structure * version up
- Loading branch information
Showing
70 changed files
with
702 additions
and
406 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Compile TS | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Node.js CI"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# run only if this is a pull request | ||
- name: Check if pull request | ||
id: pr | ||
run: echo "::set-output name=is_pr::$(test ${{ github.event.workflow_run.event.pull_request }} -eq 1 && echo true || echo false)" | ||
# exit if this is not a pull request | ||
- name: Exit if not pull request | ||
if: steps.pr.outputs.is_pr == 'false' | ||
run: exit 0 | ||
|
||
# clone the repo | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
# compile typescript | ||
- name: Compile TS | ||
run: npm run build | ||
|
||
# push changes to the pull request | ||
- name: Push changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: 'build: compile typescript' | ||
commit_options: '--no-verify' | ||
repository: ${{ github.repository }} | ||
branch: ${{ github.head_ref }} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.