Use "greater than or equal to" for nameIndex (#150) #149
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: 'ecma-262' | |
on: | |
pull_request_target: | |
branches: | |
- '*' | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: 'check IPR form' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: node scripts/ipr-check.js tc39/source-map ${{ github.event.pull_request.head.sha || 'HEAD' }} | |
env: | |
# This is a classic token with 'read:org' permission | |
GH_TOKEN: ${{ secrets.GH_IPR_TOKEN }} | |
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} |