diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2024-12-05 21:02:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-05 22:02:50 +0100 |
commit | 037760a29f4957082caccc791b978270bf78029b (patch) | |
tree | 4ab7c7fa1cedc151fb4e3b48a22116c57e6d23c2 | |
parent | c3c2535cc4142dd8871cdeeafc31d588b4e642ee (diff) | |
download | NorthstarMods-main.tar.gz NorthstarMods-main.zip |
Run compile check on vanilla as well (#911)HEADv1.29.1-rc4v1.29.1main
-rw-r--r-- | .github/workflows/compile-check.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/compile-check.yml b/.github/workflows/compile-check.yml index 8803f4f4..c0fe8687 100644 --- a/.github/workflows/compile-check.yml +++ b/.github/workflows/compile-check.yml @@ -17,6 +17,14 @@ jobs: with: mods-directory: "${{ github.workspace }}/mods" native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" + vanilla: false + + - name: Compile Scripts (Vanilla) + uses: ASpoonPlaysGames/squirrel-re-compiler@v3 + with: + mods-directory: "${{ github.workspace }}/mods" + native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" + vanilla: true # It's important that scripts compile when Northstar.Custom isn't enabled/installed, so run again without it - name: Remove Northstar.Custom @@ -28,3 +36,11 @@ jobs: with: mods-directory: "${{ github.workspace }}/mods" native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" + vanilla: false + + - name: Compile Scripts (Vanilla, No Northstar.Custom) + uses: ASpoonPlaysGames/squirrel-re-compiler@v3 + with: + mods-directory: "${{ github.workspace }}/mods" + native-json: "${{ github.workspace }}/mods/.github/nativefuncs.json" + vanilla: true |