Skip to content

chore: update API urls now that new api has been promoted #1174

chore: update API urls now that new api has been promoted

chore: update API urls now that new api has been promoted #1174

Workflow file for this run

name: e2e
on:
push:
branches:
- main
- production
pull_request:
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: latest
run_install: false
- name: Start Docker services (PostgreSQL, Redis, and S3)
run: docker compose up -d
- name: 📦 install packages
run: pnpm i --frozen-lockfile
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps chromium
- name: Init the DB
working-directory: ./api
run: pnpm drizzle-kit push --force
- name: Run Playwright tests
run: pnpm --filter @beep/test test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: test/playwright-report/
retention-days: 10