feat: add PinInput component #3
Workflow file for this run
This file contains 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
name: PR Visual Tests | |
on: | |
pull_request: | |
jobs: | |
visual_tests: | |
name: Visual Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install Packages | |
run: npm ci | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Run Visual Tests | |
run: npm run playwright | |
env: | |
CI: 'true' | |
- name: Upload Playwright Report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: playwright-report | |
path: ./playwright-report | |
retention-days: 1 | |
- name: Save PR ID | |
if: always() | |
run: | | |
pr="${{ github.event.pull_request.number }}" | |
echo $pr > ./pr-id.txt | |
shell: bash | |
- name: Create PR Artifact | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pr | |
path: ./pr-id.txt |