From f6c1ca4ae8c543ed61748216c402012acc26c9f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Fri, 29 Sep 2023 01:56:25 +0200 Subject: [PATCH] fix(ci/cd-stylua): Missing name, on, jobs --- .github/workflows/stylua.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml index a392ee7..f1dd81d 100644 --- a/.github/workflows/stylua.yml +++ b/.github/workflows/stylua.yml @@ -1,7 +1,11 @@ -- uses: actions/checkout@v3 -- uses: JohnnyMorganz/stylua-action@v3 - with: - token: ${{ secrets.GH_TOKEN }} - version: v0.8.2 # NOTE: we recommend pinning to a specific version in case of formatting changes - # CLI arguments - args: --check . +name: StyLua +on: [push, pull_request] +jobs: + StyLua check: + - uses: actions/checkout@v3 + - uses: JohnnyMorganz/stylua-action@v3 + with: + token: ${{ secrets.GH_TOKEN }} + version: v0.8.2 # NOTE: we recommend pinning to a specific version in case of formatting changes + # CLI arguments + args: --check .