Skip to content

Commit d4940ea

Browse files
Change cljs test step to use deps.edn + shadow
Disable js step as its failing and requires more setup. When persistent-sorted-set is upstream, js should be easier to test
1 parent 21fc788 commit d4940ea

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build_test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
- 'test/**'
1010
- 'project.clj'
1111
- 'deps.edn'
12+
- '.github/workflows/*'
1213

1314
jobs:
1415
test:
@@ -19,6 +20,11 @@ jobs:
1920
run: |
2021
echo "JAVA_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV
2122
echo "$JAVA_HOME_11_X64/bin" >> $GITHUB_PATH
23+
- name: Set up Clojure
24+
uses: DeLaGuardo/[email protected]
25+
with:
26+
cli: 1.11.1.1413
27+
2228
- run: ./script/test_clj.sh
23-
- run: ./script/test_cljs.sh
24-
- run: ./script/test_js.sh
29+
- run: clojure -M:shadow-cljs:test compile test && node target/datascript.js
30+
# - run: ./script/test_js.sh

0 commit comments

Comments
 (0)