updated luarc.json
PR Prerequisites / Bundles Without Errors (pull_request) Failing after 6s
PR Prerequisites / Lua Check (pull_request) Failing after 21s

This commit is contained in:
2026-09-10 19:56:06 +02:00
parent ce0c5f4a58
commit 6b5fd16a2f
2 changed files with 8 additions and 5 deletions
+7
View File
@@ -72,6 +72,13 @@ jobs:
- name: Verify Lua Language Server Installation
run: ./luals/bin/lua-language-server --version
- name: Update Json With Full Path
run: |
FULL_PATH=$(realpath ./.vscode/lua-addons)
echo "full-path: $FULL_PATH"
jq --arg full_path "$FULL_PATH" '.Lua.workspace.library[0] = $full_path' ./.luarc.json > ./.luarc.json.tmp && mv ./.luarc.json.tmp ./.luarc.json
- name: Show Config
run: cat ./.luarc.json