Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script to run with bash #16

Merged
merged 16 commits into from
Jan 30, 2025
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

- Adds `scripts/run.sh` to run this action with a bash script.

## 0.17

- :arrow_up: Upgrade to node 20.
Expand Down
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,42 @@ jobs:
## Using the `GITHUB_TOKEN` in a workflow

In order to write comments, your `GITHUB_TOKEN` might need the `pull_request: write` permission.

## Run it yourself

Alternatively, you can download and run the script `scripts/run.sh`:

```shell
Options:
-t, --token <token> Required authentication token.

--fail-on <value> Set failure level (nothing, format, info, warning, error). Default: error.
--working-directory <path> Set the working directory. Default: ./
--[no-]check-renamed-files Enable or disable checking renamed files. Default: false.
--[no-]emojis Enable or disable emojis. Default: true.
--[no-]format Enable or disable formatting. Default: true.
--line-length <number> Set max line length. Default: null.
-h, --help Show this help message.
```

```yml
on: [pull_request]

jobs:
linter:
runs-on: ubuntu-latest
name: Lint flutter code
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
- run: flutter pub get
- name: Analyze Flutter
runs: ValentinVignal/[email protected]
with:
fail-on: "warning"
- run: |
curl https://raw.githubusercontent.com/ValentinVignal/action-dart-analyze/refs/heads/main/scripts/run.sh -o script.sh
bash script.sh -t ${{ github.token }} --fail-on warning
```
Loading