Skip to content

Commit

Permalink
ci instead of i
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Kusumgar committed Dec 3, 2024
1 parent b68a5a8 commit c6fc9fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-npm-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ runs:
if: inputs.server == 'true'
shell: bash
run: |
npm i --prefix=app/server
npm ci --prefix=app/server
- name: Install static (frontend) NPM packages
if: inputs.static == 'true'
shell: bash
run: |
npm i --prefix=app/static
npm ci --prefix=app/static
2 changes: 1 addition & 1 deletion scripts/build-backend.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set -ex
ROOT=$(realpath $(dirname $0)/..)

npm install --prefix=$ROOT/app/server
npm ci --prefix=$ROOT/app/server
npm run build --prefix=$ROOT/app/server
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set -ex
ROOT=$(realpath $(dirname $0)/..)

npm install --prefix=$ROOT/app/static
npm ci --prefix=$ROOT/app/static
npm run build-with-check --prefix=$ROOT/app/static

. $ROOT/scripts/build-backend.sh

0 comments on commit c6fc9fb

Please sign in to comment.