From 043a6e31b234aace2211779ae4bcb3b40d4a5ad9 Mon Sep 17 00:00:00 2001 From: Vladislav Tupikin Date: Wed, 6 Sep 2023 18:22:13 +0300 Subject: [PATCH] concurrency removed --- .github/workflows/ci.yaml | 5 ----- .github/workflows/publish.yml | 2 -- 2 files changed, 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 53fbd0884..c242d5388 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,6 @@ jobs: name: Build runs-on: self-hosted strategy: - max-parallel: 2 matrix: node-version: [16.x, 18.x] steps: @@ -25,9 +24,7 @@ jobs: name: Lint Code needs: build runs-on: self-hosted - concurrency: job-second-stage strategy: - max-parallel: 2 matrix: node-version: [16.x, 18.x] steps: @@ -40,9 +37,7 @@ jobs: name: Unit Tests needs: build runs-on: self-hosted - concurrency: job-second-stage strategy: - max-parallel: 2 matrix: node-version: [16.x, 18.x] steps: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e93d7883e..e27eb2a47 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,6 @@ jobs: name: Lint Code needs: build runs-on: self-hosted - concurrency: job-second-stage steps: - name: Linting run: npm run lint @@ -32,7 +31,6 @@ jobs: name: Unit Tests needs: build runs-on: self-hosted - concurrency: job-second-stage steps: - name: Running unit tests run: npm run test:unit