From d35845d6c875e808f0e7a15897b3754e82d37ed1 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 12 Sep 2025 17:35:01 -0500 Subject: [PATCH] feat(ci): luals type checking --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f411b31..516732a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,17 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --display-style quiet . + lua-typecheck: + name: Lua Type Checking + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run Lua LS Type Check + uses: mrcjkb/lua-typecheck-action@v0 + with: + checklevel: Warning + directories: lua + python-format: name: Python Formatting runs-on: ubuntu-latest