Skip to content

Bump electron from 27.3.11 to 41.1.1 in /marketplace/desktop #8

Bump electron from 27.3.11 to 41.1.1 in /marketplace/desktop

Bump electron from 27.3.11 to 41.1.1 in /marketplace/desktop #8

Workflow file for this run

name: Desktop
on:
push:
branches: [main, develop]
paths:
- "marketplace/desktop/**"
- ".github/workflows/desktop.yml"
pull_request:
branches: [main]
paths:
- "marketplace/desktop/**"
- ".github/workflows/desktop.yml"
defaults:
run:
working-directory: marketplace/desktop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: marketplace/desktop/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test -- --ci