Skip to content

Commit

Permalink
Run npm install command with NODE_ENV=development to include optional…
Browse files Browse the repository at this point in the history
… dependencies
  • Loading branch information
jaredjj3 committed Jan 17, 2025
1 parent 7a5ed23 commit 070252a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
node-version: 18
cache: npm
- name: Install dependencies
run: npm install
# We set the NODE_ENV to development to install all dependencies, including optional ones.
run: NODE_ENV=development npm install
- name: Build
run: npm run build:site
- name: Setup Pages
Expand Down

0 comments on commit 070252a

Please sign in to comment.