Skip to content

build(deps-dev): bump vite from 4.5.14 to 8.0.8 #28

build(deps-dev): bump vite from 4.5.14 to 8.0.8

build(deps-dev): bump vite from 4.5.14 to 8.0.8 #28

Workflow file for this run

name: PR Build Check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-check:
name: Build Check ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
continue-on-error: true
- name: Build application
run: npm run build:ci
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}
path: |
dist/**/*
dist-electron/**/*
retention-days: 7