Update README.md #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name of your github action | ||
name: CI | ||
# this will help you specify where to run | ||
on: | ||
push: | ||
branches: | ||
# this will run on the electron branch | ||
- main | ||
# this is where the magic happens, each job happens in parallel btw | ||
jobs: | ||
build_on_mac: | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
ref: electron | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 10.16 | ||
- name: see directory | ||
run: ls | ||
build_on_win: | ||
runs-on: windows-2016 | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
ref: feature/github-actions | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 10.16 | ||
- name: see directory | ||
run: ls |