From 28c951398709ceb279925e90fb81f81643915647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20B=2E=20St=C3=B8vring?= Date: Tue, 23 Jul 2024 14:57:41 +0200 Subject: [PATCH] Update and rename test.yml to run-unit-tests.yml --- .github/workflows/{test.yml => run-unit-tests.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{test.yml => run-unit-tests.yml} (84%) diff --git a/.github/workflows/test.yml b/.github/workflows/run-unit-tests.yml similarity index 84% rename from .github/workflows/test.yml rename to .github/workflows/run-unit-tests.yml index 66c328ca..1dd8b3b6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/run-unit-tests.yml @@ -1,7 +1,7 @@ -name: Test +name: Run Unit Tests on: - workflow_dispatch: {} - pull_request: {} + workflow_dispatch: + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true @@ -20,5 +20,5 @@ jobs: node-version: 20 - name: Install Dependencies run: npm install - - name: Test + - name: Run Unit Tests run: npm test