Skip to content

Commit

Permalink
ci: recursive install
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jan 1, 2025
1 parent 16abf0a commit a048d5e
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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

0 comments on commit a048d5e

Please sign in to comment.