Skip to content

Commit

Permalink
chore: worth another try
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Jul 18, 2024
1 parent 63f1b43 commit 8774050
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/00-scan-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
id: extract_branch

- name: 🐷 TruffleHog OSS
if: ${{ github.event.pull_request != null }} # only scan on pull-requests
uses: trufflesecurity/trufflehog@main
if: ${{ github.event.pull_request != null }} # only scan on pull-requests
with:
path: ./
base: ${{ steps.extract_branch.outputs.branch-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/02-e2e-foundations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
run: npm run test:e2e

- name: 🆙 Upload test results
if: failure()
uses: actions/upload-artifact@v4
if: failure()
with:
name: foundations-playwright-results
path: ./packages/foundations/test-results
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/02-e2e-regenerate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
path: build-showcases/react-showcase

- name: ⏬ Download patternhub
if: inputs.type == 'patternhub'
uses: actions/download-artifact@v4
if: inputs.type == 'patternhub'
with:
name: db-ui-patternhub
path: build-showcases/patternhub
Expand All @@ -79,32 +79,32 @@ jobs:
fi
- name: 🆙 Upload components
if: inputs.type == 'components'
uses: actions/upload-artifact@v4
if: inputs.type == 'components'
with:
name: snapshots-${{ inputs.type }}
path: ./__snapshots__/*/component
retention-days: 30

- name: 🆙 Upload foundations
if: inputs.type == 'foundations'
uses: actions/upload-artifact@v4
if: inputs.type == 'foundations'
with:
name: snapshots-${{ inputs.type }}
path: ./__snapshots__/foundations
retention-days: 30

- name: 🆙 Upload patternhub
if: inputs.type == 'patternhub'
uses: actions/upload-artifact@v4
if: inputs.type == 'patternhub'
with:
name: snapshots-${{ inputs.type }}
path: ./__snapshots__/*/patternhub
retention-days: 30

- name: 🆙 Upload showcase
if: inputs.type == 'showcases'
uses: actions/upload-artifact@v4
if: inputs.type == 'showcases'
with:
name: snapshots-${{ inputs.type }}
path: ./__snapshots__/*/showcase
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/02-e2e-showcases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ jobs:
npx playwright merge-reports --reporter github ./blob-report
- name: 🆙 Upload test results
if: failure()
uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{ inputs.showcase }}-playwright-results-${{ matrix.shardIndex }}
path: ./showcases/${{ inputs.showcase }}/test-results
retention-days: 30

- name: 🆙 Upload aChecker results
if: failure()
uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{ matrix.framework }}-showcase-achecker-results-${{ matrix.shardIndex }}
path: ./showcases/${{ matrix.framework }}-showcase/results
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/99-add-url-comment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
name: 💬 Add url for gh-page as issue comment to PR

on:
workflow_call:
jobs:
Expand Down

0 comments on commit 8774050

Please sign in to comment.