Skip to content

Commit 9345414

Browse files
Colin TroisemaineColin Troisemaine
Colin Troisemaine
authored and
Colin Troisemaine
committed
2 parents 13bbb2d + cff5896 commit 9345414

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/electron.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build_on_mac:
9+
runs-on: macOS-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
with:
13+
ref: electron
14+
- uses: actions/setup-node@master
15+
with:
16+
node-version: 20.18.0
17+
- name: see directory
18+
run: ls
19+
20+
build_on_win:
21+
runs-on: windows-2016
22+
steps:
23+
- uses: actions/checkout@master
24+
with:
25+
ref: feature/github-actions
26+
- uses: actions/setup-node@master
27+
with:
28+
node-version: 20.18.0
29+
- name: see directory
30+
run: ls

0 commit comments

Comments
 (0)