From 03b8250ef98ac1d50353df641f35075b142e3c7a Mon Sep 17 00:00:00 2001 From: alina sireneva Date: Thu, 25 Apr 2024 06:04:00 +0300 Subject: [PATCH] ci: run lint parallel to tests --- .github/workflows/test.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5be397fb..53de8772 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -24,7 +24,6 @@ jobs: test-node: runs-on: ubuntu-latest - needs: lint strategy: matrix: @@ -46,7 +45,6 @@ jobs: test-bun: runs-on: ubuntu-latest - needs: lint steps: - uses: actions/checkout@v4 - uses: ./.github/actions/init @@ -60,7 +58,6 @@ jobs: test-deno: runs-on: ubuntu-latest - needs: lint steps: - uses: actions/checkout@v4 - uses: ./.github/actions/init @@ -74,7 +71,6 @@ jobs: test-web: runs-on: ubuntu-latest - needs: lint strategy: matrix: @@ -94,7 +90,7 @@ jobs: e2e: runs-on: ubuntu-latest - needs: [test-node, test-web, test-bun, test-deno] + needs: [lint, test-node, test-web, test-bun, test-deno] permissions: contents: read actions: write @@ -116,7 +112,7 @@ jobs: run: cd e2e/node && ./cli.sh ci-publish e2e-deno: runs-on: ubuntu-latest - needs: [test-node, test-web, test-bun, test-deno] + needs: [lint, test-node, test-web, test-bun, test-deno] permissions: contents: read actions: write