File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,12 @@ jobs:
7878 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
7979
8080 - name : Cache dist
81- uses : actions/cache/save @v4
81+ uses : actions/cache@v4
8282 with :
8383 path : ' libs/*/dist'
8484 key : ${{ runner.os }}-dist-${{ hashFiles('libs/*/dist') }}
85+ restore-keys : |
86+ ${{ runner.os }}-dist-
8587
8688 - name : Run Build
8789 run : npm run build
Original file line number Diff line number Diff line change 11lerna run lint
2- lerna run test
32lerna run build
3+ lerna run test
Original file line number Diff line number Diff line change @@ -10,14 +10,9 @@ COPY --from=install-stage /app /app
1010WORKDIR /app
1111
1212RUN npm run lint && \
13+ npm run build && \
1314 npm run test
1415
15- FROM node:20-alpine as build-stage
16- COPY --from=install-stage /app /app
17- WORKDIR /app
18-
19- RUN npm run build
20-
2116FROM node:20-alpine as run-stage
2217COPY --from=build-stage /app /app
2318WORKDIR /app
You can’t perform that action at this time.
0 commit comments