From b2490e9a1385d882fc55675aa4723bd0d14760a9 Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Wed, 15 Jul 2026 09:31:17 -0700 Subject: [PATCH] clean up concurrency and naming in GH actions --- .github/workflows/node-test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 2bb8edb..e6a9c25 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -4,11 +4,16 @@ on: - pull_request - push +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + permissions: contents: read jobs: check-license: + name: Check License runs-on: ubuntu-latest steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 @@ -21,6 +26,7 @@ jobs: - run: env bash -c 'addlicense --check -c "Google LLC" -l MIT src/**/* bin/* examples/**/*' test: + name: Run Tests runs-on: ubuntu-latest strategy: matrix: @@ -45,6 +51,7 @@ jobs: continue-on-error: true check-package-lock: + name: Check Package Lock runs-on: ubuntu-latest steps: