Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
cocos-engine/.github/workflows/web-interface-check.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
86 lines (72 sloc)
2.54 KB
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
| name: <Web> Interface check | |
| #on: push | |
| on: [pull_request_target] | |
| # github.head_ref is only defined on pull_request events | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.actor }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| interface_check: | |
| if: | |
| (! contains(github.event.pull_request.body, '[X] does not change any runtime related code or build configuration')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14.19' | |
| - name: clone REPO | |
| run: | | |
| git config --global user.name "test" | |
| git config --global user.email "test@test.com" | |
| git clone https://github.com/cocos-creator/engine.git | |
| - name: checkout BASE branch | |
| working-directory: ./engine | |
| run: | | |
| git fetch origin ${{ github.base_ref }} | |
| git checkout -b ${{ github.base_ref }}_BASE remotes/origin/${{ github.base_ref }} | |
| git branch | |
| - name: npm install BASE branch | |
| working-directory: ./engine | |
| run: | | |
| npm install --ignore-scripts | |
| - name: build BASE declaration | |
| working-directory: ./engine | |
| run: | | |
| npm run build-declaration | |
| cp ./bin/.declarations/cc.d.ts ../cc_base.d.ts | |
| - name: clear dependencies | |
| working-directory: ./engine | |
| run: | | |
| git checkout . | |
| git clean -xfd | |
| npm cache clean --force | |
| ls -la | |
| - name: merge HEAD branch | |
| working-directory: ./engine | |
| run: | | |
| git remote add HEAD_REPO https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git | |
| git fetch HEAD_REPO ${{ github.head_ref }} | |
| git merge remotes/HEAD_REPO/${{ github.head_ref }} | |
| - name: npm install HEAD branch | |
| working-directory: ./engine | |
| run: | | |
| npm install --ignore-scripts | |
| - name: build HEAD declaration | |
| working-directory: ./engine | |
| run: | | |
| npm run build-declaration | |
| - uses: LouisBrunner/diff-action@v0.1.2 | |
| with: | |
| old: ./cc_base.d.ts | |
| new: ./engine/bin/.declarations/cc.d.ts | |
| mode: addition | |
| tolerance: worse | |
| output: ./engine/interface-diff.txt | |
| - name: optimize interface check report | |
| working-directory: ./engine | |
| run: | | |
| cat ./interface-diff.txt | |
| node ./.github/workflows/interface-check-report.js | |
| - uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| path: ./engine/interface-diff.txt |