Skip to content

Electron Forge Setup #50

Electron Forge Setup

Electron Forge Setup #50

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Lint
run: |
npm run lint