✨ Recursively load queue pages if current page is empty #450
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: E2E Cypress Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
NEXT_PUBLIC_OZONE_SERVICE_DID: did:plc:ar7c4by46qjdydhdevvrndac | |
NEXT_PUBLIC_PLC_DIRECTORY_URL: https://plc.directory | |
NEXT_PUBLIC_HANDLE_RESOLVER_URL: https://api.bsky.app | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
build: yarn build | |
start: yarn start | |
browser: chrome | |
- name: Setup Screenshot Artifacts | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |