Skip to content

Commit

Permalink
feat(ci): add summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybacon committed Mar 11, 2024
1 parent ff485dd commit 4c83ec8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Check typings
run: pnpm lint:typings
- name: Lint Markdown
run: pnpm lint:wiki
run: pnpm lint:wiki >> $GITHUB_STEP_SUMMARY

tests:
name: Tests
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test:coverage
run: pnpm test:coverage >> $GITHUB_STEP_SUMMARY

preview:
name: Preview
Expand All @@ -78,7 +78,8 @@ jobs:
- name: Build
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
id: deploy
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} >> $GITHUB_OUTPUT

release:
name: Release
Expand Down

0 comments on commit 4c83ec8

Please sign in to comment.