We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b656f8 commit 238ae33Copy full SHA for 238ae33
2 files changed
.github/workflows/wikiwire.yml
@@ -28,6 +28,11 @@ jobs:
28
unzip -q darklua-linux-x86_64.zip
29
chmod +x darklua
30
31
+ - name: Setup Lua 5.1
32
+ uses: leafo/gh-actions-lua@v12
33
+ with:
34
+ luaVersion: "5.1.5"
35
+
36
- name: Regenerate Lua outputs for changed Luau modules
37
shell: bash
38
env:
@@ -51,6 +56,10 @@ jobs:
51
56
mkdir -p "$(dirname "$out_path")"
52
57
53
58
./darklua process --config .darklua.json5 "$path" "$out_path"
59
60
+ cp "$out_path" "$out_path.raw"
61
+ lua -p "$out_path.raw"
62
54
63
node scripts/polyfill.js "$out_path"
55
64
node scripts/compatibility.js "$out_path"
65
done <<< "$changed_files"
modules/obbywiki.com/ObbyGameInfobox/ObbyGameInfobox.module.luau
@@ -1,5 +1,4 @@
1
-- inspired by scw
2
--- 4
3
4
local ObbyGameInfobox = {}
5
0 commit comments