Skip to content

[embed] Add vercel.json and CSP headers for embed-ghostnet #8135

[embed] Add vercel.json and CSP headers for embed-ghostnet

[embed] Add vercel.json and CSP headers for embed-ghostnet #8135

Workflow file for this run

name: E2E Tests
on: push
jobs:
test:
permissions: write-all
timeout-minutes: 35
runs-on: ubuntu-latest-m
env:
TZKT_SYNC_IMAGE: bakingbad/tzkt-sync:1.14.5
TZKT_API_IMAGE: serjonya/tzkt-api:1.14.5-linux
steps:
- uses: actions/checkout@v4
- name: Pull docker images
run: docker compose pull --quiet &
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9.0
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install
- name: Install Playwright browser
run: pnpm --filter=./apps/desktop-e2e exec playwright install chromium --with-deps
- run: pnpm test:e2e
- name: Cucumber Report to Annotations
uses: deblockt/[email protected]
if: always()
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
path: "apps/desktop-e2e/test-results/cucumber-report.json"
show-global-summary-report: true
- uses: actions/upload-artifact@v4
if: always()
with:
name: cucumber-report
path: apps/desktop-e2e/test-results/cucumber-report.html
retention-days: 10