From 64792f47f54708f9ec46ea7da691ce21981b9605 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Wed, 8 Oct 2025 01:50:36 +0300 Subject: Add test runner for cljs --- .github/workflows/tests.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to '.github') 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 + -- cgit v1.2.3