From 0792979f9be77110a02280ca1263d91afd5dccda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 26 Sep 2022 11:20:53 +0100 Subject: [PATCH] feat(ci): enable action lint --- .github/workflows/actionlint.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/actionlint.yml diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml new file mode 100644 index 000000000..ed98b1e8d --- /dev/null +++ b/.github/workflows/actionlint.yml @@ -0,0 +1,22 @@ +name: Lint Actions + +on: + push: + branches: + - main + pull_request: + branches: + - main + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-20.04 + steps: + - name: "Checkout Repository" + uses: actions/checkout@v3 + + - name: Run actionlint + uses: reviewdog/action-actionlint@v1.31.0