chore: save #6
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: Visual Comparison | |
on: | |
push: | |
branches: [visual-tests] | |
# on: | |
# push: | |
# paths: | |
# - 'src/**' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_SECRET_KEY }} | |
AWS_DEFAULT_REGION: us-east-1 | |
APPZI_TOKEN: ${{ secrets.APPZI_TOKEN }} | |
MENDABLE_API_KEY: ${{ secrets.MENDABLE_API_KEY }} | |
FULLSTORY_ORGID: ${{ secrets.FULLSTORY_ORGID }} | |
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }} | |
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
ALGOLIA_SEARCH_KEY: ${{ secrets.ALGOLIA_SEARCH_KEY }} | |
jobs: | |
take-screenshots: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright browsers | |
run: npx playwright install --with-deps chromium | |
- name: Build the website | |
run: make build | |
- name: Take screenshots with Playwright | |
run: make test-visual | |
- name: Upload screenshots | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "snapshots" | |
path: | | |
screenshots/screenshot.specs.ts-snapshots/ | |
if-no-files-found: error | |
retention-days: 1 | |
- name: Upload Report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "report" | |
path: | | |
playwright-report/ | |
if-no-files-found: error | |
retention-days: 1 | |
# - name: Upload screenshots to Argos | |
# run: yarn argos upload ./screenshots |