Skip to content

migration to electron-forge, secure app #136

migration to electron-forge, secure app

migration to electron-forge, secure app #136

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Build Env Information
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
- name: Type check
run: npm run typecheck
- name: Lint check
run: npm run lint
- name: Test Vite Build
run: npm run package