From de813c1573c40d3497a31df2936104803a76fb86 Mon Sep 17 00:00:00 2001 From: Scott J Dickerson Date: Thu, 14 Dec 2023 12:55:46 -0500 Subject: [PATCH] Restore strategy, remove branches "v*" Signed-off-by: Scott J Dickerson --- .github/workflows/ci-actions.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index d6aff59b0a..eeed592731 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -4,26 +4,27 @@ on: push: branches: - main - - "v[0-9]+.[0-9]+.[0-9]+" - "release-*" pull_request: branches: - main - - "v[0-9]+.[0-9]+.[0-9]+" - "release-*" jobs: unit-test: runs-on: ubuntu-latest + strategy: + matrix: + # Note: This should match the node version(s) used in the base Dockerfile + node-version: [18.x] steps: - uses: actions/checkout@v4 - # Note: This should match the node version used in the base Dockerfile - - name: Use Node.js 18.x + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: ${{ matrix.node-version }} - name: Verify package-lock.json run: ./scripts/verify_lock.mjs