Skip to content

Bump qs from 6.14.1 to 6.14.2 in /src/webview #231

Bump qs from 6.14.1 to 6.14.2 in /src/webview

Bump qs from 6.14.1 to 6.14.2 in /src/webview #231

Workflow file for this run

---
############################################################
# PROJECT : MALT (MALoc Tracker)
# DATE : 09/2025
# LICENSE : CeCILL-C
# FILE : .github/workflows/malt.yml
#-----------------------------------------------------------
# AUTHOR : Sébastien Valat (INRIA) - 2024 - 2025
# AUTHOR : Sébastien Valat - 2024
############################################################
name: Malt
on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
jobs:
build-project:
name: Build & test MALT
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Install dependencies
run: sudo apt-get install -y libunwind-dev nodejs npm cmake libelf-dev graphviz libssl-dev libpython3-dev
- name: Build Project & test
run: |
mkdir build
cd build
../configure --enable-tests --enable-debug --enable-junit-output
make
ctest --output-on-failure
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: failure()