Skip to content

chore: disable firefox in ci #15

chore: disable firefox in ci

chore: disable firefox in ci #15

Workflow file for this run

name: E2E Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 120
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Install Aztec CLI
run: |
curl -s https://install.aztec.network > tmp.sh
bash tmp.sh <<< yes "yes"
- name: Update path
run: echo "/home/runner/.aztec/bin" >> $GITHUB_PATH
- name: Set Aztec version and start sandbox
run: |
aztec-up 0.87.2
aztec start --sandbox &
- name: Compile contracts
run: script -e -c "${AZTEC_NARGO:-aztec-nargo} compile"
working-directory: ./contracts
- name: Install dependencies
working-directory: ./app
run: npm install -g yarn && yarn
- name: Install Playwright Browsers
working-directory: ./app
run: yarn playwright install --with-deps
- name: Deploy contracts
working-directory: ./app
env:
PROVER_ENABLED: false
run: yarn deploy-contracts
- name: Build app
working-directory: ./app
run: yarn build
- name: Run tests
working-directory: ./app
run: yarn test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: app/playwright-report/
retention-days: 30