File tree 1 file changed +4
-11
lines changed
1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,10 @@ ADD tsconfig.mina-signer-web.json tsconfig.mina-signer-web.json
15
15
ADD tsconfig.node.json tsconfig.node.json
16
16
ADD tsconfig.test.json tsconfig.test.json
17
17
ADD tsconfig.web.json tsconfig.web.json
18
- FROM base AS prod-deps
19
18
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
20
-
21
- FROM base AS build
22
19
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
23
20
24
- # # now the source copyied
21
+ # # now the source is copied
25
22
COPY src /app/src
26
23
COPY tests /app/tests
27
24
COPY benchmark /app/benchmark
@@ -30,15 +27,11 @@ COPY dune-project /app/dune-project
30
27
31
28
RUN npm ci
32
29
RUN pnpm run build
30
+ RUN pnpm install jest
33
31
34
32
COPY run-jest-tests.sh /app/run-jest-tests.sh
35
33
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
34
39
- FROM base
40
- COPY --from=prod-deps /app/node_modules /app/node_modules
41
- COPY --from=build /app/dist /app/dist
42
- EXPOSE 8000
43
- CMD [ "pnpm" , "start" ]
35
+ CMD [ "pnpm" , "run" , "test" ]
44
36
37
+ # RUN pnpm run test || echo skip errors
You can’t perform that action at this time.
0 commit comments