We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf5123 commit 83c80e9Copy full SHA for 83c80e9
Dockerfile
@@ -31,6 +31,11 @@ COPY dune-project /app/dune-project
31
RUN npm ci
32
RUN pnpm run build
33
34
+COPY run-jest-tests.sh /app/run-jest-tests.sh
35
+COPY jest.config.js /app/jest.config.js
36
+RUN pnpm run test || echo skip errors
37
+RUN pnpm run test:unit || echo skip errors
38
+
39
FROM base
40
COPY --from=prod-deps /app/node_modules /app/node_modules
41
COPY --from=build /app/dist /app/dist
0 commit comments