fix: wrong order of resolving function expression and operands expression for call_indirect #317
Workflow file for this run
This file contains hidden or 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: PR | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| check-title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check PR Title Prefix | |
| id: title-check | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const titlePrefixes = ["feat", "fix", "breaking", "chore"]; | |
| const title = context.payload.pull_request.title.toLowerCase(); | |
| const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`)); | |
| if (!titleHasValidPrefix) { process.exit(-1); } |