lint #192
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: "lint" | |
on: | |
# by adding a schedule task to this workflow we will automatically | |
# begin serializing read-only runs and handling them. The cron job | |
# below is set to run every 15 minutes, GitHub will ignore anything | |
# under 10 minutes and run every 10 minutes anyway. | |
schedule: | |
- cron: '*/15 * * * *' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- closed | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
with: | |
reportIgnoredFiles: true | |
reportWarningsAsErrors: true | |
issueSummaryOnlyOnEvent: true |