aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 8ee21fb7d..e9f58c5c7 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -51,6 +51,15 @@ jobs:
51 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }} 51 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}
52 with: 52 with:
53 node-version-file: ".nvmrc" 53 node-version-file: ".nvmrc"
54 - name: Install npm
55 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}
56 run: npm i -gf "npm@$(node -p 'require("./package.json").engines.npm')" && npm -v
57 - name: Install pnpm
58 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}
59 run: npm i -gf "pnpm@$(node -p 'require("./recipes/package.json").engines.pnpm')" && pnpm -v
60 - name: Install node dependencies
61 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}
62 run: npm i
54 - id: should_run 63 - id: should_run
55 name: Check whether there are any commits since this run was last triggered and push them and/or set the output 64 name: Check whether there are any commits since this run was last triggered and push them and/or set the output
56 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }} 65 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, '[nightly branch]')) }}