From ea3dc7e6a883465996b907f9de49ffdbfe247de0 Mon Sep 17 00:00:00 2001 From: jj Date: Wed, 23 Jul 2025 17:09:41 +0000 Subject: [PATCH] ci: split up install/run steps --- .github/workflows/test-services.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-services.yml b/.github/workflows/test-services.yml index 0833380d..c722084e 100644 --- a/.github/workflows/test-services.yml +++ b/.github/workflows/test-services.yml @@ -30,7 +30,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 - - run: pnpm i --frozen-lockfile && node api/src/util/test run-tests-for ${{ matrix.service }} + - run: pnpm i --frozen-lockfile + - run: node api/src/util/test run-tests-for ${{ matrix.service }} env: HTTP_PROXY: ${{ secrets.API_EXTERNAL_PROXY }} TEST_IGNORE_SERVICES: ${{ vars.TEST_IGNORE_SERVICES }}