Skip to content

build: 发布版本更新至0.4.20 #77

build: 发布版本更新至0.4.20

build: 发布版本更新至0.4.20 #77

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- master
- desktop
jobs:
electron-build:
name: Typecheck and build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Build Electron app
run: bun run build