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 98fe839 commit 851f211Copy full SHA for 851f211
Dockerfile
@@ -28,6 +28,11 @@ ENV USER=codewarrior \
28
PATH=/opt/purescript:$PATH
29
30
RUN set -ex; \
31
+ # TODO Properly package the reporter and install
32
+ mkdir /tmp/reporter; \
33
+ curl -fsSL https://github.com/codewars/purescript-spec-reporter-codewars/archive/refs/tags/v0.0.1.tar.gz | tar xz -C /tmp/reporter --strip-components=1; \
34
+ mv /tmp/reporter/src/Test /workspace/src/Test; \
35
+ rm -rf /tmp/reporter; \
36
cd /workspace; \
37
npm install; \
38
# install packages
workspace/src/Test/Spec/Reporter/Codewars.purs
0 commit comments