Support more lenient error stack symbolication and don't fail for "empty url" and "address at" frames #40
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| statuses: write | |
| deployments: write | |
| pull-requests: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| path: src | |
| - name: Set up depot-tools | |
| uses: newkdev/setup-depot-tools@v1.0.1 | |
| - name: Sync gclient workspace | |
| run: | | |
| gclient config --unmanaged src --name src | |
| gclient sync --no-history | |
| - name: Run linter | |
| run: | | |
| cd src | |
| NODE_OPTIONS="--max-old-space-size=8192" npm run lint -- --fix=false |