diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2026-04-10 17:13:54 +0200 |
|---|---|---|
| committer | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2026-04-22 09:34:25 +0200 |
| commit | e6f3c9cf5efe1d4566997a3a7b70c947cb930190 (patch) | |
| tree | 2fcae7dc73faffd61f37d5b18605861aeeede0bd | |
| parent | 5a0425f5bc1f018727807141c51ca24dc8c1b413 (diff) | |
| download | mullvadvpn-test-disable-npm-lifecycle-scripts.tar.xz mullvadvpn-test-disable-npm-lifecycle-scripts.zip | |
Update usage of 'npm ci' and `npm install` to 'npm run` counterpartstest-disable-npm-lifecycle-scripts
| -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 |
