From e9db37bcfac6a678ddb722960f2191126fec8490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Fri, 29 Sep 2023 02:08:42 +0200 Subject: [PATCH] fix(ci/cd-stylua): Missing runs on, steps, names (#14) * fix(ci/cd-luacheck): Rename job from sile to Luacheck * fix(ci/cd-stylua): Missing runs on, steps, names --- .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 f1dd81d..8c9c71e 100644 --- a/.github/workflows/stylua.yml +++ b/.github/workflows/stylua.yml @@ -2,10 +2,14 @@ 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 . + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: StyLua check + 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 .