feat: add zstyle configuration support and fix color handling #8
This file contains hidden or 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: Linters | |
| "on": | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| yamllint: | |
| name: yamllint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code | |
| uses: actions/checkout@v4 | |
| - name: 🚀 Run yamllint | |
| uses: reviewdog/action-yamllint@v1 | |
| with: | |
| reporter: github-pr-review | |
| filter_mode: nofilter | |
| fail_on_error: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| markdownlint: | |
| name: markdownlint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code | |
| uses: actions/checkout@v4 | |
| - name: 🚀 Run markdownlint | |
| uses: reviewdog/action-markdownlint@v0 | |
| with: | |
| reporter: github-pr-review | |
| filter_mode: nofilter | |
| fail_on_error: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| whiskers: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code | |
| uses: actions/checkout@v4 | |
| - name: ⤵️ Setup whiskers | |
| uses: catppuccin/setup-whiskers@v2 | |
| with: | |
| whiskers-version: 2.5.1 | |
| - name: 🚀 Run whiskers | |
| run: | | |
| find templates/ -name "*.tera" | xargs -I {} whiskers {} | |
| - name: 🚀 Suggester / whiskers | |
| uses: reviewdog/action-suggester@v1 | |
| with: | |
| tool_name: whiskers | |
| filter_mode: nofilter | |
| fail_on_error: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |