Skip to content

feat(build): set bash shell for electron-builder cross-platform args #18

feat(build): set bash shell for electron-builder cross-platform args

feat(build): set bash shell for electron-builder cross-platform args #18

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- master
- v3
pull_request:
branches:
- main
- master
- v3
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
validate:
name: Lint, Typecheck & Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Prebuild Version Info
run: npm run prebuild --if-present
- name: Run Type Check
run: npm run typecheck
- name: Run Linter
run: npm run lint --if-present
- name: Run Unit Tests
run: npm test