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 c7386c2 commit 77b0da9Copy full SHA for 77b0da9
1 file changed
.github/workflows/build.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
13
- test:
+ clj-test:
14
runs-on: ubuntu-latest
15
steps:
16
- name: Git checkout
@@ -28,10 +28,6 @@ jobs:
28
lein: 2.9.1
29
bb: latest
30
31
- - uses: actions/setup-node@v4
32
- with:
33
- node-version: '20'
34
-
35
- name: Run JVM tests
36
run: lein test
37
@@ -41,3 +37,27 @@ jobs:
41
- name: Run babashka tests
42
38
run: |
43
39
bb test:bb
40
+
+ cljs-test:
+ runs-on: ubuntu-latest
+ steps:
44
+ - name: Git checkout
45
+ uses: actions/checkout@v1
46
47
+ - name: Prepare java
48
+ uses: actions/setup-java@v3
49
+ with:
50
+ distribution: 'temurin'
51
+ java-version: '21'
52
53
+ - name: Install clojure tools
54
+ uses: DeLaGuardo/setup-clojure@13.0
55
56
+ lein: 2.9.1
57
58
+ - uses: actions/setup-node@v4
59
60
+ node-version: '20'
61
62
+ - name: Run node tests
63
+ run: lein doo node once
0 commit comments