Skip to content

Commit

Permalink
ci: πŸ”„ mkdir node_modules before npm ci
Browse files Browse the repository at this point in the history
apparently, running mkdir node_modules
before npm ci speeds up dependencies
installation.

REF: npm/cli#3208 (comment)
  • Loading branch information
lucas-labs committed Jan 18, 2023
1 parent 4a24152 commit 86e99e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache: npm

- name: πŸ“¦ Install Dependencies
run: npm ci
run: mkdir node_modules && npm ci

- name: πŸ—οΈ Build
run: npm run build
Expand Down

0 comments on commit 86e99e9

Please sign in to comment.