test: MMQA - 1711 - [Mobile] Update Predict e2e tests to enable features that were disabled due to feature flag updates #65322
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: 'Check PR Max Lines' | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write # Required for the called workflow to manage labels | |
| jobs: | |
| check-pr-max-lines: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check PR lines changed | |
| uses: MetaMask/github-tools/.github/actions/pr-line-check@v1 | |
| with: | |
| max-lines: '1000' | |
| ignore-patterns: '(\.lock|\.snap)$' |