aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-24 19:29:08 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-24 19:29:27 -0500
commite220e15441aef1da6bbaa83728b785833b4867ec (patch)
treec0b722b0080d6167740b965a450a184430dd2e33 /.github
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-e220e15441aef1da6bbaa83728b785833b4867ec.tar.gz
ferdium-app-e220e15441aef1da6bbaa83728b785833b4867ec.tar.zst
ferdium-app-e220e15441aef1da6bbaa83728b785833b4867ec.zip
Remove dependency on 'jq' since 'node' can be used for the same
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index d8fe24e20..58b0e639a 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -138,9 +138,9 @@ jobs:
138 with: 138 with:
139 node-version-file: ".nvmrc" 139 node-version-file: ".nvmrc"
140 - name: Install npm 140 - name: Install npm
141 run: npm i -gf "npm@$(jq --raw-output .engines.npm ./package.json)" && npm -v 141 run: npm i -gf "npm@$(node -p 'require("./package.json").engines.npm')" && npm -v
142 - name: Install pnpm 142 - name: Install pnpm
143 run: npm i -gf "pnpm@$(jq --raw-output .engines.pnpm ./recipes/package.json)" && pnpm -v 143 run: npm i -gf "pnpm@$(node -p 'require("./recipes/package.json").engines.pnpm')" && pnpm -v
144 - name: Install node dependencies 144 - name: Install node dependencies
145 run: npm i 145 run: npm i
146 - name: Package recipes 146 - name: Package recipes
@@ -223,9 +223,9 @@ jobs:
223 with: 223 with:
224 node-version-file: ".nvmrc" 224 node-version-file: ".nvmrc"
225 - name: Install npm 225 - name: Install npm
226 run: npm i -gf "npm@$(jq --raw-output .engines.npm ./package.json)" && npm -v 226 run: npm i -gf "npm@$(node -p 'require("./package.json").engines.npm')" && npm -v
227 - name: Install pnpm 227 - name: Install pnpm
228 run: npm i -gf "pnpm@$(jq --raw-output .engines.pnpm ./recipes/package.json)" && pnpm -v 228 run: npm i -gf "pnpm@$(node -p 'require("./recipes/package.json").engines.pnpm')" && pnpm -v
229 - name: Install node dependencies 229 - name: Install node dependencies
230 run: npm i 230 run: npm i
231 - name: Figure out used package.json version 231 - name: Figure out used package.json version
@@ -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@$(jq --raw-output .engines.npm package.json)" && 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@$(jq --raw-output .engines.pnpm ./recipes/package.json)" && 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: