This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-29
Channels
- # announcements (1)
- # babashka (83)
- # beginners (67)
- # chlorine-clover (22)
- # cider (11)
- # circleci (6)
- # clj-kondo (12)
- # cljs-dev (137)
- # cljsrn (15)
- # clojure (124)
- # clojure-europe (40)
- # clojure-italy (1)
- # clojure-nl (3)
- # clojure-norway (1)
- # clojure-serbia (3)
- # clojure-spec (19)
- # clojure-uk (14)
- # clojuredesign-podcast (5)
- # clojurescript (80)
- # conjure (49)
- # core-async (62)
- # cursive (18)
- # datascript (1)
- # datomic (64)
- # docker (28)
- # emacs (20)
- # figwheel-main (249)
- # fulcro (95)
- # graalvm (2)
- # jobs-discuss (11)
- # joker (2)
- # juxt (4)
- # lambdaisland (9)
- # leiningen (1)
- # meander (14)
- # mount (6)
- # off-topic (16)
- # pathom (46)
- # re-frame (35)
- # reagent (6)
- # reitit (5)
- # shadow-cljs (28)
- # spacemacs (6)
- # sql (18)
- # tools-deps (26)
- # vim (8)
- # xtdb (23)
- # yada (1)
I'm trying to set up a job that runs both Clojure tests and ClojureScript tests. I figured an image based on openjdk and tools-deps would be a good basis but I can't find how to install node in a way that makes the node
command available for cljs-test-runner
to actually find. Can someone point me at an existing project that does this?
I thought maybe this would work https://github.com/seancorfield/honeysql/blob/master/.circleci/config.yml#L17-L19 but it doesn't seem to make a node
command available (I guess it makes a js
command available instead?).
@seancorfield I've got a CircleCI config here which runs .cljc lib tests on the JVM and Node: https://github.com/borkdude/edamame/blob/master/.circleci/config.yml
Oh, interesting... using separate jobs / separate images.
I got it working by adding a step to add a symlink from /usr/bin/js
to /usr/bin/node
so I can do it all in one job for now... It all "Just. Worked." using GitHub Actions.