Skip to content

Commit f591733

Browse files
committed
[ github actions ] need to specify npm install.
1 parent 97ec6f7 commit f591733

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
- name: Check out Git repository
4242
uses: actions/checkout@v2
4343

44+
- name: npm install
45+
run: |
46+
npm install
47+
4448
- name: Build Electron app
4549
env:
4650
github_token: ${{ secrets.github_token }}

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
- name: Check out Git repository
3636
uses: actions/checkout@v6
3737

38+
- name: npm install
39+
run: |
40+
npm install
41+
3842
- name: Build/Notarize/Release Electron app
3943
env:
4044
github_token: ${{ secrets.github_token }}

0 commit comments

Comments
 (0)