Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading