Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2 #155

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2

chore(deps-dev): bump typescript-eslint from 8.58.1 to 8.58.2 #155

Workflow file for this run

# SPDX-License-Identifier: MIT
# CI that builds this nodejs module
name: ci
on:
pull_request:
push:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
qt:
- version: 6.5.0
preset: dev
- version: 6.11.*
preset: dev
exclude:
# Broken aqtinstall
- os: windows-latest
qt:
version: 6.11.*
preset: dev
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22.x
- name: Install dependencies
run: npm install --loglevel verbose
- name: tsc
run: node_modules/.bin/tsc
- name: Install ninja (Windows / Linux)
if: ${{ runner.os != 'macOS' }}
uses: turtlesec-no/get-ninja@main
- name: Install ninja (macOS)
if: ${{ runner.os == 'macOS' }}
run: brew install ninja
- name: Install GTest (Linux)
if: ${{ runner.os == 'Linux' }}
run: sudo apt-get install -y libgtest-dev
- name: Install GTest (macOS)
if: ${{ runner.os == 'macOS' }}
run: brew install googletest
- name: Install GTest (Windows)
if: ${{ runner.os == 'Windows' }}
run: vcpkg install gtest:x64-windows
env:
VCPKG_ROOT: C:\vcpkg
- name: Make sure MSVC is found when Ninja generator is in use
if: ${{ runner.os == 'Windows' }}
uses: ilammy/msvc-dev-cmd@v1
- name: Install Qt ${{ matrix.qt.version }}
uses: jurplel/install-qt-action@v4
with:
version: ${{ matrix.qt.version }}
cache: true
- name: Build Qt test (non-Windows)
if: ${{ runner.os != 'Windows' }}
run: |
cmake --preset=${{ matrix.qt.preset }} -S test/qt_test/
cmake --build test/qt_test/build-dev/
- name: Build Qt test (Windows)
if: ${{ runner.os == 'Windows' }}
run: |
cmake --preset=${{ matrix.qt.preset }} -S test/qt_test/ -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake --build test/qt_test/build-dev/
- name: Run test
run: node out/test.js