aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-03 20:01:22 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-06-04 11:08:25 +0200
commitae5c92ac38dd7facce8a61b110e08b1b4a2a4238 (patch)
tree16e78531439db7fce856f93ff4f064647f40eaad /.github
parent986cfbcaf4aa6300109e93c114e439d2578887af (diff)
Enable `odin check examples/all` for JS.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 356a977b0..3b378b693 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -159,6 +159,12 @@ jobs:
- name: Odin check examples/all for OpenBSD amd64
if: matrix.os == 'ubuntu-latest'
run: ./odin check examples/all -vet -strict-style -disallow-do -target:openbsd_amd64
+ - name: Odin check examples/all for js_wasm32
+ if: matrix.os == 'ubuntu-latest'
+ run: ./odin check examples/all -vet -strict-style -disallow-do -no-entry-point -target:js_wasm32
+ - name: Odin check examples/all for js_wasm64p32
+ if: matrix.os == 'ubuntu-latest'
+ run: ./odin check examples/all -vet -strict-style -disallow-do -no-entry-point -target:js_wasm64p32
- name: Odin check examples/all/sdl3 for Linux i386
if: matrix.os == 'ubuntu-latest'