Skip to content

build(deps): bump tar and electron-builder #5

build(deps): bump tar and electron-builder

build(deps): bump tar and electron-builder #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
electron:
runs-on: windows-latest
timeout-minutes: 20
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test
- name: Type-check
run: npm run typecheck
- name: Build Electron application
run: npm run build