From 92f678bfb14738ecc905937217db8c690298ba4c Mon Sep 17 00:00:00 2001 From: Takashi Masuda Date: Mon, 17 Jun 2024 22:02:50 +0900 Subject: [PATCH] Introduce actionlint to CI --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 25d243a..6f30670 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,6 +7,22 @@ on: pull_request: jobs: + actionlint: + runs-on: ubuntu-latest + timeout-minutes: 5 + permissions: + checks: write + contents: read + pull-requests: write + steps: + - uses: actions/checkout@v4 + - name: Run actionlint + uses: reviewdog/action-actionlint@fd627997c9688c2f39e13917aed23873c031b834 # v1.48.0 + with: + fail_on_error: true + filter_mode: nofilter + level: error + reporter: github-pr-review test: runs-on: ubuntu-latest timeout-minutes: 5