From 844409dbfe553b314f32e41fa7b81bb83a8866d0 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 5 May 2026 22:08:45 -0400 Subject: [PATCH] Add workflow dispatch to CI --- .github/workflows/nodejs.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6c83b497..b1472275 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,12 +1,13 @@ name: Node CI on: + workflow_dispatch: push: branches: - main - - 'v*' # prior release branches (e.g. `v0.30.x` branch) + - "v*" # prior release branches (e.g. `v0.30.x` branch) tags: - - 'v*' + - "v*" pull_request: jobs: @@ -28,7 +29,7 @@ jobs: scenarios: needs: discover_matrix name: ${{ matrix.name }} - runs-on: '${{ matrix.os }}-latest' + runs-on: "${{ matrix.os }}-latest" strategy: fail-fast: false matrix: ${{fromJson(needs.discover_matrix.outputs.matrix)}} @@ -62,7 +63,7 @@ jobs: scenarios_legacy: needs: discover_matrix_legacy name: ${{ matrix.name }} - runs-on: '${{ matrix.os }}-latest' + runs-on: "${{ matrix.os }}-latest" strategy: fail-fast: false matrix: ${{fromJson(needs.discover_matrix_legacy.outputs.matrix)}}