Skip to content

Commit

Permalink
Revert to npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki committed Feb 17, 2022
1 parent af8052c commit b56cc27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci
run: npm install

- name: Execute lint & build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci
run: npm install

- name: Execute lint & build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Installing dependencies
run: |
npm ci
npm install
- name: Lint & Compile
run: |
Expand Down
4 changes: 2 additions & 2 deletions build-minimal-production
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

npm install -g modclean

npm ci
npm install
npm run build

# Creating a new folder to deploy minimum requirement files.
Expand All @@ -11,7 +11,7 @@ cp -r bin/ dist/ LICENSE package.json README.md production-app/

# Cleaning up unnecessary files.
cd production-app/
npm ci --only=prod --ignore-scripts
npm install --only=prod --ignore-scripts
npm prune --production
rm -rf node_modules/*/test/ node_modules/*/tests/
modclean -n default:safe --run
Expand Down

0 comments on commit b56cc27

Please sign in to comment.