From 46cb0a3cf36b92913f950f5796359dbea367b830 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Thu, 26 Mar 2026 11:58:49 +0200 Subject: [PATCH] chore: Check workflow/action formatting --- .github/workflows/actionlint.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 31f1247..bbe8b51 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -56,6 +56,23 @@ jobs: $ACTIONLINT -color \ -format '{{range $err := .}}::error file={{$err.Filepath}},line={{$err.Line}},col={{$err.Column}}::{{$err.Message}} [{{$err.Kind}}]{{end}}' + prettier: + name: Prettier + timeout-minutes: 5 + runs-on: ubuntu-24.04 + defaults: + run: + shell: bash + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + persist-credentials: false + - name: Check formatting + env: + # renovate: depName=prettier datasource=npm + PRETTIER_VERSION: "3.8.1" + run: npx --yes "prettier@${PRETTIER_VERSION}" --check '**/*.yml' + zizmor: name: zizmor timeout-minutes: 5