From a048d5e71d3a3816fdffb6d0bdf0aad9f69e9d95 Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Wed, 1 Jan 2025 13:16:54 +0100 Subject: [PATCH] ci: recursive install --- .github/workflows/pull_request.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 376430a97..2860d9534 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -12,11 +12,11 @@ jobs: matrix: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - - id: matrix - run: echo "matrix=$(node .github/workflows/get-matrix.mjs)" >> $GITHUB_OUTPUT - - run: echo ${{ steps.matrix.outputs.matrix }} + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - id: matrix + run: echo "matrix=$(node .github/workflows/get-matrix.mjs)" >> $GITHUB_OUTPUT + - run: echo ${{ steps.matrix.outputs.matrix }} outputs: matrix: ${{ steps.matrix.outputs.matrix }} test: @@ -39,7 +39,8 @@ jobs: uses: pnpm/action-setup@v4 with: version: latest - run_install: true + run_install: + recursive: true - name: Test run: pnpm run test --scope "${{ matrix.package }}" env: @@ -59,7 +60,7 @@ jobs: needs: test runs-on: ubuntu-latest steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@main - with: - parallel-finished: true + - name: Coveralls Finished + uses: coverallsapp/github-action@main + with: + parallel-finished: true