[Bug]: dense onCameraChanged traffic during gestures can overwhelm JS without a native throttle #1543
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: CheckCodeExampleInIssue | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| jobs: | |
| check-issue-example-code: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: run lint-code-example-in-issues.js | |
| run: | | |
| npm install | |
| node lint-code-example-in-issues.js | |
| working-directory: ./scripts/actions/lint-code-example-in-issues | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |