chore(deps): update dependency electron to v34.1.0 #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Code validation job, executed on pull request | |
# Runs linting and formatting tests | |
name: PR Validation | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
name: Lint & Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run test:lint | |
- name: Format | |
run: npm run test:format |