mirror of https://github.com/DJ2LS/FreeDATA.git
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
name: GUI tests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
# The CMake configure and build commands are platform-agnostic and should work equally
|
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
|
# cross-platform coverage.
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
# By default, GitHub will maximize the number of jobs run in parallel
|
|
# depending on the available runners on GitHub-hosted virtual machines.
|
|
# max-parallel: 8
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
#- node-version: "16" # EOL
|
|
#- node-version: "18" # EOL
|
|
#- node-version: "20" # EOL (2026-04-30), also incompatible with @babel/core 8 (requires ^22.18.0 || >=24.11.0)
|
|
- node-version: "22"
|
|
- node-version: "24"
|
|
- node-version: "26"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- name: Install Node.js, NPM and Yarn
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install dependencies
|
|
working-directory: freedata_gui
|
|
run: |
|
|
npm i
|
|
|
|
- name: GUI Linting
|
|
working-directory: freedata_gui
|
|
run: |
|
|
npm run lint
|
|
|
|
- name: GUI Build
|
|
working-directory: freedata_gui
|
|
run: |
|
|
npm run build |