File tree 4 files changed +1300
-1155
lines changed
4 files changed +1300
-1155
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
on : [ push ]
4
4
5
5
jobs :
6
- clojure :
6
+ test-clj :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- name : Checkout
32
32
33
33
- name : Run CLJ Tests
34
34
run : clojure -M:test:test-clj-runner
35
+
36
+ test-cljs :
37
+ runs-on : ubuntu-latest
38
+ steps :
39
+ - name : Checkout
40
+ uses : actions/checkout@v3
41
+
42
+ - name : Prepare java
43
+ uses : actions/setup-java@v3
44
+ with :
45
+ distribution : ' zulu'
46
+ java-version : ' 21'
47
+
48
+ - name : Install clojure tools
49
+ uses :
DeLaGuardo/[email protected]
50
+ with :
51
+ cli : 1.12.0.1530
52
+
53
+ - name : Cache clojure dependencies
54
+ uses : actions/cache@v4
55
+ with :
56
+ path : |
57
+ ~/.m2/repository
58
+ ~/.gitlibs
59
+ ~/.deps.clj
60
+ key : cljsdeps-${{ hashFiles('deps.edn') }}
61
+ restore-keys : cljsdeps-
62
+
63
+ - name : Install Node
64
+ uses : actions/setup-node@v4
65
+ with :
66
+ node-version : 22
67
+
68
+ - run : npm ci
69
+
70
+ - name : Run CLJS Karma Tests
71
+ run : npm run ci
You can’t perform that action at this time.
0 commit comments