Test design update #42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example: Visual Design Review (With Screenshots) | |
| # Uses the pencil-screenshot-service for high-fidelity rendering. | |
| # No API key needed — authenticates via GitHub OIDC (free tier: 100 screenshots/month). | |
| name: Design Review (Visual) | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.pen' | |
| jobs: | |
| design-review: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write # Required for OIDC authentication | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Design Review | |
| uses: remotestate/pencil-actions@v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| renderer: service | |
| service-url: https://pencil.remotestate.com | |
| review-mode: full | |
| comment-id: visual | |
| max-frames-per-file: 10 | |
| image-format: webp | |
| image-scale: 3 |