From fc801348d17fdd9d9426c436513cfb84ee399625 Mon Sep 17 00:00:00 2001 From: lizhensheng Date: Fri, 1 Mar 2024 17:12:05 +0800 Subject: [PATCH] [fix]: update github action --- .github/{actions => workflows}/catch-and-install.yml | 0 .github/workflows/main.yml | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename .github/{actions => workflows}/catch-and-install.yml (100%) diff --git a/.github/actions/catch-and-install.yml b/.github/workflows/catch-and-install.yml similarity index 100% rename from .github/actions/catch-and-install.yml rename to .github/workflows/catch-and-install.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdeaf022b..ed02879e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Install dependencies - uses: ../actions/catch-and-install.yml + uses: ./catch-and-install.yml - name: Code lint checker run: pnpm checker @@ -25,7 +25,7 @@ jobs: shard: [1, 2, 3, 4] steps: - name: Install dependencies - uses: ../actions/catch-and-install.yml + uses: ./catch-and-install.yml - name: Coverage test report ee run: pnpm test:ci-ee ${{ matrix.shard }} ${{ strategy.job-total }} @@ -34,7 +34,7 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Install dependencies - uses: ../actions/catch-and-install.yml + uses: ./catch-and-install.yml - name: Coverage test report ce run: pnpm test:ci-ce @@ -44,7 +44,7 @@ jobs: needs: [test-ee, test-ce] steps: - name: Install dependencies - uses: ../actions/catch-and-install.yml + uses: ./catch-and-install.yml - name: Coverage test report uses: ArtiomTr/jest-coverage-report-action@v2 with: