Skip to content

attemp

attemp #4

Workflow file for this run

name: Website-e2e
on:
push:
branches: [add/website-e2e-ci]
pull_request:
branches: [main]
jobs:
cypress-run:
runs-on: ubuntu-22.04
env:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.5.1'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v6
with:
command: cd ./packages/website && npm run e2e