Skip to content

feat: app separation #76

feat: app separation

feat: app separation #76

Workflow file for this run

name: Electron Tests
on:
push:
branches: [ alpha, beta, rc, main ]
pull_request:
types: [opened, synchronize]
branches: [ alpha, beta, rc, main ]
jobs:
test-electron:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Electron tests
run: npm run test:electron