Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
cache: "yarn"

- name: yarn install
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: yarn lint
run: yarn run prettier:check
Expand Down
2 changes: 1 addition & 1 deletion packages/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:18 as builder

WORKDIR /app
COPY . .
RUN yarn install --frozen-lockfile --ignore-scripts
RUN yarn install --immutable --ignore-scripts
RUN yarn run prepare:lerna
RUN cd packages/www && yarn run static
RUN cd packages/api && yarn run esbuild
Expand Down