Skip to content
This repository was archived by the owner on Jun 21, 2024. It is now read-only.

Commit 776e0d7

Browse files
authored
Update build.yml
1 parent 39f6a68 commit 776e0d7

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ env:
1212
jobs:
1313
build_macos:
1414
runs-on: macos-latest
15-
steps:
15+
steps:
1616
- uses: actions/checkout@v2
17+
- name: Set up Node.js 16.x
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: '16.x'
1721
- name: Install Dependencies
1822
run: npm install
1923
- name: Build macOS app
@@ -30,8 +34,12 @@ jobs:
3034

3135
build_windows:
3236
runs-on: windows-latest
33-
steps:
37+
steps:
3438
- uses: actions/checkout@v2
39+
- name: Set up Node.js 16.x
40+
uses: actions/setup-node@v2
41+
with:
42+
node-version: '16.x'
3543
- name: Install Dependencies
3644
run: npm install
3745
- name: Build Windows app
@@ -50,6 +58,10 @@ jobs:
5058
runs-on: ubuntu-latest
5159
steps:
5260
- uses: actions/checkout@v2
61+
- name: Set up Node.js 16.x
62+
uses: actions/setup-node@v2
63+
with:
64+
node-version: '16.x'
5365
- name: Install Dependencies
5466
run: npm install
5567
- name: Build Linux app

0 commit comments

Comments
 (0)