From 436c15041941c31cec004e7b88258461055e353b Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Sun, 8 Feb 2026 15:09:14 -0500 Subject: [PATCH] ci: add shell: /bin/sh to avoid node dependency --- .github/workflows/luacheck.yaml | 3 +++ .github/workflows/stylua.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/luacheck.yaml b/.github/workflows/luacheck.yaml index eebf0d5..9be85c6 100644 --- a/.github/workflows/luacheck.yaml +++ b/.github/workflows/luacheck.yaml @@ -16,5 +16,8 @@ jobs: steps: - uses: actions/checkout@v4 - run: apk add --no-cache lua5.1 luarocks5.1 git + shell: /bin/sh - run: luarocks-5.1 install luacheck + shell: /bin/sh - run: luacheck . + shell: /bin/sh diff --git a/.github/workflows/stylua.yaml b/.github/workflows/stylua.yaml index 1cfce1b..afc449d 100644 --- a/.github/workflows/stylua.yaml +++ b/.github/workflows/stylua.yaml @@ -16,8 +16,11 @@ jobs: steps: - uses: actions/checkout@v4 - run: apk add --no-cache curl unzip git + shell: /bin/sh - run: | curl -L -o stylua.zip "https://github.com/JohnnyMorganz/StyLua/releases/latest/download/stylua-linux.zip" unzip stylua.zip chmod +x stylua + shell: /bin/sh - run: ./stylua --check . + shell: /bin/sh