Skip to content

Commit 8aff4e2

Browse files
authored
Skip Electron binary download in CI as we do not run it (#8063)
1 parent 7251ec7 commit 8aff4e2

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ jobs:
5858
node-version: ${{ matrix.node-version }}
5959
cache: "yarn"
6060
- run: yarn run ci
61+
env:
62+
ELECTRON_SKIP_BINARY_DOWNLOAD: '1'
6163
- run: yarn run lint
6264
- name: Get Version Number
6365
id: getPackageInfo

.github/workflows/linter.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
node-version: 22.x
2525
cache: "yarn"
2626
- run: yarn run ci
27+
env:
28+
ELECTRON_SKIP_BINARY_DOWNLOAD: '1'
2729
- run: yarn run lint
2830
# let's verify that webpack is able to package the project
2931
- run: yarn run pack

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
node-version: ${{ matrix.node-version }}
6464
cache: "yarn"
6565
- run: yarn run ci
66+
env:
67+
ELECTRON_SKIP_BINARY_DOWNLOAD: '1'
6668
- run: yarn run lint
6769

6870
- name: Get Version Number

0 commit comments

Comments
 (0)