Skip to content

Commit

Permalink
feat(ci,electron) build for Windows and macOS on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Aug 15, 2023
1 parent 14a7bc2 commit f216ce4
Showing 1 changed file with 36 additions and 6 deletions.
42 changes: 36 additions & 6 deletions .github/workflows/ci_spot-electron.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 'CI - spot-electron'
on: [pull_request]
jobs:
lint-spot-electron:
name: Lint [spot-electron]
runs-on: ubuntu-latest
build-spot-electron-mac:
name: [spot-electron] Build on macOS
runs-on: macOS-latest

steps:
- name: Step 1 - checkout
Expand All @@ -23,9 +23,35 @@ jobs:
working-directory: 'spot-electron'
run: npm install

- name: Step 4 - run lint
- name: Step 4 - build
working-directory: 'spot-electron'
run: npm run lint
run: npm run dist

build-spot-electron-windows:
name: [spot-electron] Build on Windows
runs-on: windows-latest

steps:
- name: Step 1 - checkout
uses: actions/checkout@v3

- name: cd spot-electron
run: cd spot-electron

- name: Step 2 - setup node 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: spot-electron/package-lock.json

- name: Step 3 - run install
working-directory: 'spot-electron'
run: npm install

- name: Step 4 - build
working-directory: 'spot-electron'
run: npm run dist

unit-tests-spot-electron:
name: Unit-tests [spot-electron]
Expand All @@ -49,6 +75,10 @@ jobs:
working-directory: 'spot-electron'
run: npm install

- name: Step 4 - run test
- name: Step 4 - run lint
working-directory: 'spot-electron'
run: npm run lint

- name: Step 5 - run test
working-directory: 'spot-electron'
run: npm run test

0 comments on commit f216ce4

Please sign in to comment.