summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2025-10-08 01:50:36 +0300
committerAsko Nõmm <asko@nmm.ee>2025-10-08 01:50:36 +0300
commit64792f47f54708f9ec46ea7da691ce21981b9605 (patch)
tree077ecc84baf3c3453b432036e8262ffc87ac45f6 /.github
parented35b736e4098b3c7a5825674adcdd52ad577f89 (diff)
Add test runner for cljs
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml26
1 files changed, 25 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index e28ccd7..456c321 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -22,4 +22,28 @@ jobs:
- name: Run tests
run: |
- clojure -X:test
+ clojure -X:test-clj
+
+ test-cljs:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Setup Java
+ uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: '24'
+
+ - name: Setup Clojure
+ uses: DeLaGuardo/setup-clojure@13.4
+ with:
+ cli: 'latest'
+ clj-kondo: 'latest'
+ bb: 'latest'
+
+ - name: Run tests
+ run: |
+ clojure -M:test-cljs
+