Skip to content

Commit

Permalink
fix: pnpm installation
Browse files Browse the repository at this point in the history
  • Loading branch information
micksabox committed May 7, 2024
1 parent a294e6e commit c6cc559
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
uses: actions/checkout@v3

- name: 📦 Install Dependencies
run: npm install
run: pnpm install

- name: 🔨 Build Project
run: npm run build
run: pnpm build

# needs: [lint, typecheck, vitest, playwright]
deploy:
Expand Down
2 changes: 2 additions & 0 deletions other/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ FROM base as deps

WORKDIR /myapp

RUN npm install -g pnpm

ADD package.json pnpm-lock.yaml .npmrc ./
RUN pnpm install --include=dev

Expand Down

0 comments on commit c6cc559

Please sign in to comment.