From 57a5285507f27e60f2dd01a7e8f8fadce54cf2d9 Mon Sep 17 00:00:00 2001 From: Ethan Gardner Date: Fri, 29 Nov 2024 11:19:29 -0500 Subject: [PATCH] update action version --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62d9044..8614ada 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,19 +2,24 @@ name: test on: pull_request: + push: branches: - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js environment - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: # Use the same Node.js version as specified in your .nvmrc file node-version-file: '.nvmrc'