diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml new file mode 100644 index 00000000..4a4430b2 --- /dev/null +++ b/.github/workflows/lint.yaml @@ -0,0 +1,17 @@ +name: Lint + +on: + pull_request: + branches: + - main + +jobs: + lint: + if: startsWith(github.head_ref, 'package/') + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Lint + uses: memo33/sc4pac-actions/actions/lint