aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Nathanaƫl Houn <contact@nathanaelhoun.fr>2022-04-25 22:05:21 +0200
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-25 15:44:18 -0500
commit8cdfa9d584bb864cec200a77633fff581ecc5b49 (patch)
tree89818ab7950e2701fcabf5684deb166c2a73707b /.github
parentRebranding of Ferdium Server (diff)
downloadferdium-app-8cdfa9d584bb864cec200a77633fff581ecc5b49.tar.gz
ferdium-app-8cdfa9d584bb864cec200a77633fff581ecc5b49.tar.zst
ferdium-app-8cdfa9d584bb864cec200a77633fff581ecc5b49.zip
fix(ci): escape quotes in windows npm i command
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 58b0e639a..142cbe7e2 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -313,9 +313,9 @@ jobs:
313 with: 313 with:
314 node-version-file: ".nvmrc" 314 node-version-file: ".nvmrc"
315 - name: Install npm 315 - name: Install npm
316 run: npm i -gf "npm@$(node -p 'require("./package.json").engines.npm')" && npm -v 316 run: npm i -gf "npm@$(node -p 'require(\"./package.json\").engines.npm')" && npm -v
317 - name: Install pnpm 317 - name: Install pnpm
318 run: npm i -gf "pnpm@$(node -p 'require("./recipes/package.json").engines.pnpm')" && pnpm -v 318 run: npm i -gf "pnpm@$(node -p 'require(\"./recipes/package.json\").engines.pnpm')" && pnpm -v
319 - name: Install node dependencies 319 - name: Install node dependencies
320 uses: nick-invision/retry@v2.4.0 320 uses: nick-invision/retry@v2.4.0
321 with: 321 with: