Skip to content

Add comprehensive Electron packaging documentation #4

Add comprehensive Electron packaging documentation

Add comprehensive Electron packaging documentation #4

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch: # Allow manual triggering
# Cancel in-progress runs when a new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ESLint & TypeScript Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint
- name: TypeScript type check
run: yarn tsc --noEmit