Skip to content

Commit

Permalink
chore: use build result in publint github action (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinRoy authored Dec 15, 2023
1 parent 6ee33d3 commit 0e53fc1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
- run: pnpm run lint

publint:
needs: ['build']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -126,5 +127,9 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install --frozen-lockfile
- run: pnpm run build-all
- uses: actions/download-artifact@v3
id: download
with:
name: 'build'
path: 'packages'
- run: pnpm run publint

0 comments on commit 0e53fc1

Please sign in to comment.