Skip to content

Commit

Permalink
Update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sajjadmrx committed Feb 16, 2024
1 parent 2203e63 commit 4ac04ce
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,33 @@ name: Build

on:
push:
paths-ignore:
- "README.md"
- "README-*.md"
- ".github/ISSUE_TEMPLATE/*"

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- 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
- name: Build typescript files
run: npm run build:ts

0 comments on commit 4ac04ce

Please sign in to comment.