feat: add sg_flags
option to pass additional ast-grep flags
#12
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-check: | |
name: runner / ast-grep (github-check) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-check | |
level: info | |
test-pr-check: | |
if: github.event_name == 'pull_request' | |
name: runner / ast-grep (github-pr-check) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-check | |
level: warning | |
test-pr-review: | |
if: github.event_name == 'pull_request' | |
name: runner / ast-grep (github-pr-review) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
continue-on-error: true | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
level: error | |
filter_mode: file | |
fail_on_error: true | |
- name: check the exit code | |
if: ${{ !success() }} | |
run: echo 'The previous step should fail' && exit 1 | |
test-sarif: | |
name: runner / ast-grep (sarif) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
reporter: sarif |