Skip to content

Bump electron from 36.8.1 to 38.3.0 #1594

Bump electron from 36.8.1 to 38.3.0

Bump electron from 36.8.1 to 38.3.0 #1594

Workflow file for this run

name: Standard Lint
on:
pull_request:
push:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['24']
name: Block on linting errors (Node ${{ matrix.node }})
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Set up node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run standard lint
run: npm run lint