🎉 Add circle CI (for backend).

This commit is contained in:
Andrey Antukh 2021-02-01 14:06:06 +01:00
parent 240de28567
commit b3f9c3d27e
4 changed files with 68 additions and 7 deletions

View file

@ -77,8 +77,10 @@
(defn clean-storage
[next]
(fs/delete (fs/path "/tmp/penpot"))
(next))
(let [path (fs/path "/tmp/penpot")]
(when (fs/exists? path)
(fs/delete (fs/path "/tmp/penpot")))
(next)))
(defn serial
[& funcs]