https://github.com/leancodepl/dart-problem-matcher
https://github.com/leancodepl/dart-problem-matcher
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/leancodepl/dart-problem-matcher
- Owner: leancodepl
- Created: 2022-11-30T10:20:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-30T12:01:30.000Z (over 3 years ago)
- Last Synced: 2025-07-07T09:44:13.815Z (11 months ago)
- Language: JavaScript
- Size: 151 KB
- Stars: 14
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dart-problem-matcher

A GitHub Action that annotates your Dart (or Flutter) analyzer warnings and errors and helps you spot them right in the code.

## Usage
Simply add the step somewhere above your `dart/flutter analyze` in your steps list in GitHub Workflow:
```yaml
jobs:
test:
steps:
- uses: leancodepl/dart-problem-matcher@main
- run: dart analyze # or flutter analyze
# other steps...
```
## Known limitations
* [GitHub Problem Matchers](https://github.com/actions/toolkit/blob/main/docs/problem-matchers.md) allow only up to 10 warning and 10 error annotations per step.
* Only analyzer's `warning` and `error` severity problems will be annotated, `info` will be not.