Skip to content

Commit b321c71

Browse files
authored
Merge branch 'electron:main' into main
2 parents 9332ca1 + 6c8b30e commit b321c71

28 files changed

+937
-899
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
run: |
2525
git config --global core.autocrlf false
2626
git config --global core.eol lf
27-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # tag: v4.2.0
27+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag: v4.2.2
2828
- name: Setup Node.js
29-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # tag: v4.0.4
29+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # tag: v4.2.0
3030
with:
3131
node-version: lts/-1
3232
- name: Cache node_modules
3333
id: cache-node-modules
34-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
34+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # tag: v4.2.0
3535
with:
3636
path: node_modules
3737
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}-node-modules

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,19 @@ jobs:
2929
git config --global core.autocrlf false
3030
git config --global core.eol lf
3131
git config --global core.filemode false
32+
git config --global core.fscache true
33+
git config --global core.preloadindex true
3234
git config --global branch.autosetuprebase always
33-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # tag: v4.2.0
35+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag: v4.2.2
3436
with:
3537
fetch-depth: 1
3638
- name: Setup Node.js
37-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # tag: v4.0.4
39+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # tag: v4.2.0
3840
with:
3941
node-version: lts/-1
4042
- name: Cache node_modules
4143
id: cache-node-modules
42-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
44+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # tag: v4.2.0
4345
with:
4446
path: node_modules
4547
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}-node-modules

.github/workflows/validate-configs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
- name: Validate JSON schema
1919
uses: dsanders11/json-schema-validate-action@ec60131eddf6f51ed0c737fdcd28616ae1a0e564 # v1.2.0
2020
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.nyc_output/
2+
artifacts
23
configs
34
coverage
45
node_modules

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ git cherry-pick --continue
482482
git push
483483
484484
# create pull request
485-
e pr --backport 1234
485+
e pr open --backport 1234
486486
```
487487
488488
## Common Usage

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"command-exists": "^1.2.8",
2929
"commander": "^9.0.0",
3030
"debug": "^4.3.1",
31+
"extract-zip": "^2.0.1",
3132
"inquirer": "^8.2.4",
3233
"node-gyp": "^10.0.1",
3334
"open": "^6.4.0",
@@ -46,7 +47,7 @@
4647
"lint-staged": "^15.2.10",
4748
"nyc": "^17.1.0",
4849
"prettier": "^3.3.3",
49-
"vitest": "^2.1.3"
50+
"vitest": "^3.0.6"
5051
},
5152
"lint-staged": {
5253
"*.js": [

src/ci/ci-cancel.js

Lines changed: 0 additions & 45 deletions
This file was deleted.

src/ci/ci-rerun.js

Lines changed: 0 additions & 51 deletions
This file was deleted.

src/ci/ci-status.js

Lines changed: 0 additions & 210 deletions
This file was deleted.

0 commit comments

Comments
 (0)