WIP: chore: remove bun.lockb #12

Closed
t.behrendt wants to merge 2 commits from chore-remove-bun-lock into main
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 074a9aa4ab - Show all commits

View File

@@ -21,7 +21,7 @@ jobs:
bun-version-file: ".bun-version"
- name: Install dependencies
run: bun install --frozen-lockfile
run: bun install
- name: Run lint
run: bun run check:code

View File

@@ -4,12 +4,12 @@ WORKDIR /app
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
COPY package.json /temp/dev/
RUN cd /temp/dev && bun install
RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production
COPY package.json /temp/prod/
RUN cd /temp/prod && bun install --production
FROM base AS build
COPY --from=install /temp/dev/node_modules node_modules

BIN
bun.lockb

Binary file not shown.