Skip to content

uncomment: Enable zip and msi targets for Windows in electron-builder… #41

uncomment: Enable zip and msi targets for Windows in electron-builder…

uncomment: Enable zip and msi targets for Windows in electron-builder… #41

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- "README.md"
- "README-*.md"
- ".github/ISSUE_TEMPLATE/*"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Install Node v18
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Install electron-builder
run: npm i electron-builder -g
- name: Build typescript files
run: npm run build:code