diff options
| -rw-r--r-- | .github/workflows/frontend.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/translations.yml | 2 | ||||
| -rw-r--r-- | BuildInstructions.md | 2 | ||||
| -rwxr-xr-x | build.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index c6bd51e2f8..f0d5c23d39 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -32,7 +32,7 @@ jobs: - name: Install dependencies working-directory: desktop shell: bash - run: npm ci + run: npm run ci - name: Check formatting if: matrix.os == 'ubuntu-latest' diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index ee5eafb27a..0aa99fcdab 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -30,7 +30,7 @@ jobs: - name: Install JS dependencies working-directory: desktop shell: bash - run: npm ci + run: npm run ci - name: Verify translations shell: bash diff --git a/BuildInstructions.md b/BuildInstructions.md index 9bf2f2eda9..18eba2977c 100644 --- a/BuildInstructions.md +++ b/BuildInstructions.md @@ -329,7 +329,7 @@ This section is for building the desktop app individually. 1. Install all the JavaScript dependencies by running: ```bash - npm install -w mullvad-vpn + npm run install ``` 1. Start the Electron app in development mode by running: @@ -462,7 +462,7 @@ if [[ "$DAEMON_ONLY" == "false" ]]; then log_header "Installing JavaScript dependencies" pushd desktop - npm ci --no-audit --no-fund + npm run ci pushd packages/mullvad-vpn |
