Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
loks0n committed Jan 17, 2025
1 parent 4fd4ec5 commit cf8c0ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
format:
name: "Run ESLint"
name: "Format"
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -21,5 +21,5 @@ jobs:
- name: Install dependencies
run: npm install

- name: Run Prettier
- name: Format
run: npm run format
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
lint:
name: "Run ESLint"
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -21,5 +21,5 @@ jobs:
- name: Install dependencies
run: npm install

- name: Run ESLint
- name: Lint
run: npm run lint
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN corepack enable

FROM base AS builder

COPY package.json pnpm-lock.yaml /app/
WORKDIR /app
COPY package.json pnpm-lock.yaml /usr/src/app/
WORKDIR /usr/src/app

RUN pnpm fetch --prod

COPY . /app
COPY . /usr/src/app

RUN pnpm install

Expand Down

0 comments on commit cf8c0ad

Please sign in to comment.