From 640c7bb90841b8669896712104c64d3bab09bcf7 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 26 Nov 2025 16:55:44 -0800 Subject: [PATCH] ci: use clang problem matcher with nan spec runner (#49096) --- .github/workflows/pipeline-segment-node-nan-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pipeline-segment-node-nan-test.yml b/.github/workflows/pipeline-segment-node-nan-test.yml index 9ea5ae3862..e536eabdd4 100644 --- a/.github/workflows/pipeline-segment-node-nan-test.yml +++ b/.github/workflows/pipeline-segment-node-nan-test.yml @@ -138,10 +138,16 @@ jobs: unzip -:o dist.zip - name: Setup Linux for Headless Testing run: sh -e /etc/init.d/xvfb start + - name: Add Clang problem matcher + shell: bash + run: echo "::add-matcher::src/electron/.github/problem-matchers/clang.json" - name: Run Nan Tests run: | cd src node electron/script/nan-spec-runner.js + - name: Remove Clang problem matcher + shell: bash + run: echo "::remove-matcher owner=clang::" - name: Wait for active SSH sessions shell: bash if: always() && !cancelled()