From 498d169aca76ed8313e710b76d8be664304b1ec8 Mon Sep 17 00:00:00 2001 From: Zita Szupera Date: Thu, 23 Nov 2023 15:15:23 +0100 Subject: [PATCH] remove clenup to avoid problems with parallel workflows --- .github/workflows/test.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98901c7..b97bef5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,9 +11,6 @@ on: pull_request: types: [opened, synchronize, reopened] -concurrency: - group: test-workflow - jobs: lint: runs-on: ubuntu-latest @@ -81,28 +78,3 @@ jobs: - name: Test run: bun run vitest - cleanup: - if: ${{ always() }} - needs: [test-node, test-bun] - runs-on: ubuntu-latest - concurrency: - group: test-workflow - cancel-in-progress: true - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Setup Bun@1 - uses: oven-sh/setup-bun@v1 - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 20 - cache: "yarn" - - - name: Install Dependencies - run: yarn install --immutable - - name: Build - run: yarn build - - name: Cleanup - run: node test-cleanup.js