Parser Check #4104
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: Parser Check | |
on: | |
# Allow manual builds of this workflow. | |
workflow_dispatch: { } | |
# Run this job every hour. | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
parser_check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 0.5 | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dart-lang/setup-dart@v1 | |
- name: Verify comment text parser | |
working-directory: ./scripts/bin | |
run: | | |
dart pub get | |
dart parser_verifier.dart -t ${{ secrets.GITHUB_TOKEN }} |