Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'

# Same rewrite as the setup job. Dependabot-regenerated lockfiles
# resolve @electron/node-gyp as git@github.com: (SSH). Runners have
# no deploy key, so install dies in ~20s with "Permission denied
# (publickey)" — that is why Dependabot PRs fail e2e while develop
# (HTTPS tarball in the lockfile) stays green. See #544.
- name: Force HTTPS for GitHub git dependencies
run: git config --global 'url.https://github.com/.insteadOf' 'git@github.com:'

- name: Install dependencies (with postinstall scripts)
run: pnpm install --frozen-lockfile

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
node-version: '22'
cache: 'pnpm'

# Dependabot lockfiles resolve @electron/node-gyp as git@github.com:.
# Without this rewrite, `pnpm install` dies on SSH (see #544 / e2e).
- name: Force HTTPS for GitHub git dependencies
run: git config --global 'url.https://github.com/.insteadOf' 'git@github.com:'

# Title check only needs commitlint + its config — no workspace
# native deps, no postinstall.
- name: Install commitlint
Expand Down
Loading