Skip to content

Merge pull request #81 from movahhedi/main #43

Merge pull request #81 from movahhedi/main

Merge pull request #81 from movahhedi/main #43

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