Skip to content

Commit

Permalink
fix: use npm for install step
Browse files Browse the repository at this point in the history
  • Loading branch information
stagas committed Oct 3, 2024
1 parent e437ac6 commit 41028d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
- name: Install Bun
uses: oven-sh/setup-bun@v1

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x

- name: Install dependencies
run: bun install --ignore-scripts
run: npm install --ignore-scripts

- name: Build step
- name: Build
run: bun run build

- name: Generate .env file
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@ jobs:
- name: Install Bun
uses: oven-sh/setup-bun@v1

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x

- name: Install dependencies
run: bun install --ignore-scripts
run: npm install --ignore-scripts

- name: Build step
- name: Build
run: bun run build

- name: Generate .env file
Expand Down

0 comments on commit 41028d2

Please sign in to comment.