Skip to content

upgrade Electron to 43.2.0 #233

upgrade Electron to 43.2.0

upgrade Electron to 43.2.0 #233

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v6.4.0
with:
node-version: 22.12.0
cache: npm
- name: Install
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm run test
- name: Build
run: npm run build