This commit makes the build process more robust, simplifies configurations and reduce the risk of incomplete or erroneous deployments. - Centralize output directory definitions by introducing `dist-dirs.json`. - Add `verify-build-artifacts` utility to ensure correct build outputs and `print-dist-dir` to determine distribution directory. - Add steps in CI/CD pipeline to verify build artifacts. - Migrate Electron Builder config from YAML to CJS for capability to read JSON. - Fix `release-site.yaml` failing due to pointing to wrong distribution directory, change it to use `print-dist-dir`. - Improve `check-desktop-runtime-errors` to verify build artifacts for more reliable builds. Ensure tests fail and succeed reliably. - Update `.gitignore` and configure ESLint to use it to define and ignore build artifact directories from one place, remove `.eslintignore` that does not add anything after this change. - Keep `"main"` field in `package.json` as `electron-vite` depends on it (alex8088/electron-vite#270). - Improve documentation
91 lines
2.5 KiB
YAML
91 lines
2.5 KiB
YAML
name: build-checks
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-web:
|
|
strategy:
|
|
matrix:
|
|
os: [ macos, ubuntu, windows ]
|
|
mode: [
|
|
# Vite mode: https://vitejs.dev/guide/env-and-mode.html
|
|
development, # Used by `dev` command
|
|
production, # Used by `build` command
|
|
# Vitest mode: https://vitest.dev/guide/cli.html
|
|
test, # Used by Vitest
|
|
]
|
|
fail-fast: false # Allows to see results from other combinations
|
|
runs-on: ${{ matrix.os }}-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
-
|
|
name: Install dependencies
|
|
run: npm ci
|
|
-
|
|
name: Build web
|
|
run: npm run build -- --mode ${{ matrix.mode }}
|
|
-
|
|
name: Verify web build artifacts
|
|
run: npm run check:verify-build-artifacts -- --web
|
|
|
|
build-desktop:
|
|
strategy:
|
|
matrix:
|
|
os: [ macos, ubuntu, windows ]
|
|
mode: [
|
|
# electron-vite modes: https://electron-vite.org/guide/env-and-mode.html#global-env-variables
|
|
development, # Used by `dev` command
|
|
production, # Used by `build` and `preview` commands
|
|
]
|
|
fail-fast: false # Allows to see results from other combinations
|
|
runs-on: ${{ matrix.os }}-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
-
|
|
name: Install dependencies
|
|
run: npm ci
|
|
-
|
|
name: Prebuild desktop
|
|
run: npm run electron:prebuild -- --mode ${{ matrix.mode }}
|
|
-
|
|
name: Verify unbundled desktop build artifacts
|
|
run: npm run check:verify-build-artifacts -- --electron-unbundled
|
|
-
|
|
name: Build (bundle and package) desktop application
|
|
run: npm run electron:build -- --publish never
|
|
-
|
|
name: Verify bundled desktop build artifacts
|
|
run: npm run check:verify-build-artifacts -- --electron-bundled
|
|
|
|
create-icons:
|
|
strategy:
|
|
matrix:
|
|
os: [ macos, ubuntu, windows ]
|
|
fail-fast: false # Allows to see results from other combinations
|
|
runs-on: ${{ matrix.os }}-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
-
|
|
name: Install dependencies
|
|
run: npm ci
|
|
-
|
|
name: Create icons
|
|
run: npm run icons:build
|