2022-07-12 00:34:38 +00:00
|
|
|
name: E2E Embed tests and booking flow(for non-embed as well)
|
2022-05-30 17:11:05 +00:00
|
|
|
on:
|
2022-11-03 20:29:14 +00:00
|
|
|
pull_request_target: # So we can test on forks
|
2022-05-30 17:11:05 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
# Embed e2e - tests verify booking flow which is applicable to non-embed case also. So, don't ignore apps/web changes.
|
2022-07-05 00:26:27 +00:00
|
|
|
paths:
|
2022-07-06 17:33:36 +00:00
|
|
|
- apps/web/**
|
|
|
|
- packages/embeds/**
|
2023-01-12 23:01:33 +00:00
|
|
|
workflow_call:
|
2022-09-08 17:01:47 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
2022-05-30 17:11:05 +00:00
|
|
|
jobs:
|
2022-07-04 21:27:22 +00:00
|
|
|
e2e-embed:
|
2022-05-30 17:11:05 +00:00
|
|
|
timeout-minutes: 20
|
2022-07-12 00:27:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-30 17:11:05 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgresql://postgres:@localhost:5432/calendso
|
|
|
|
NEXT_PUBLIC_WEBAPP_URL: http://localhost:3000
|
|
|
|
NEXT_PUBLIC_WEBSITE_URL: http://localhost:3000
|
|
|
|
NEXTAUTH_SECRET: secret
|
|
|
|
GOOGLE_API_CREDENTIALS: ${{ secrets.CI_GOOGLE_API_CREDENTIALS }}
|
|
|
|
GOOGLE_LOGIN_ENABLED: true
|
|
|
|
# CRON_API_KEY: xxx
|
|
|
|
CALENDSO_ENCRYPTION_KEY: ${{ secrets.CI_CALENDSO_ENCRYPTION_KEY }}
|
|
|
|
NEXT_PUBLIC_STRIPE_PUBLIC_KEY: ${{ secrets.CI_NEXT_PUBLIC_STRIPE_PUBLIC_KEY }}
|
2022-07-06 19:31:07 +00:00
|
|
|
NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE: ${{ secrets.CI_NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE }}
|
|
|
|
NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE: ${{ secrets.CI_NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE }}
|
|
|
|
NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE: ${{ secrets.CI_NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE }}
|
2022-09-08 00:38:37 +00:00
|
|
|
NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE: ${{ secrets.NEXT_PUBLIC_STRIPE_PREMIUM_NEW_PLAN_PRICE }}
|
|
|
|
NEXT_PUBLIC_IS_PREMIUM_NEW_PLAN: 1
|
2022-05-30 17:11:05 +00:00
|
|
|
STRIPE_PRIVATE_KEY: ${{ secrets.CI_STRIPE_PRIVATE_KEY }}
|
|
|
|
STRIPE_CLIENT_ID: ${{ secrets.CI_STRIPE_CLIENT_ID }}
|
|
|
|
STRIPE_WEBHOOK_SECRET: ${{ secrets.CI_STRIPE_WEBHOOK_SECRET }}
|
|
|
|
PAYMENT_FEE_PERCENTAGE: 0.005
|
|
|
|
PAYMENT_FEE_FIXED: 10
|
|
|
|
SAML_DATABASE_URL: postgresql://postgres:@localhost:5432/calendso
|
|
|
|
SAML_ADMINS: pro@example.com
|
|
|
|
NEXTAUTH_URL: http://localhost:3000/api/auth
|
|
|
|
NEXT_PUBLIC_IS_E2E: 1
|
|
|
|
# EMAIL_FROM: e2e@cal.com
|
|
|
|
# EMAIL_SERVER_HOST: ${{ secrets.CI_EMAIL_SERVER_HOST }}
|
|
|
|
# EMAIL_SERVER_PORT: ${{ secrets.CI_EMAIL_SERVER_PORT }}
|
|
|
|
# EMAIL_SERVER_USER: ${{ secrets.CI_EMAIL_SERVER_USER }}
|
|
|
|
# EMAIL_SERVER_PASSWORD: ${{ secrets.CI_EMAIL_SERVER_PASSWORD }}
|
|
|
|
# MS_GRAPH_CLIENT_ID: xxx
|
|
|
|
# MS_GRAPH_CLIENT_SECRET: xxx
|
|
|
|
# ZOOM_CLIENT_ID: xxx
|
|
|
|
# ZOOM_CLIENT_SECRET: xxx
|
|
|
|
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
|
|
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
|
|
|
|
services:
|
|
|
|
postgres:
|
2022-12-23 00:11:31 +00:00
|
|
|
image: postgres:12.1
|
2022-05-30 17:11:05 +00:00
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: calendso
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }} # So we can test on forks
|
|
|
|
fetch-depth: 2
|
2022-06-13 21:16:58 +00:00
|
|
|
- run: echo 'NODE_OPTIONS="--max_old_space_size=4096"' >> $GITHUB_ENV
|
2022-07-12 00:27:24 +00:00
|
|
|
- name: Use Node 16.x
|
2022-05-30 17:11:05 +00:00
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-07-12 00:27:24 +00:00
|
|
|
node-version: 16.x
|
2022-05-30 17:11:05 +00:00
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Cache playwright binaries
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: playwright-cache
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/Library/Caches/ms-playwright
|
|
|
|
~/.cache/ms-playwright
|
|
|
|
${{ github.workspace }}/node_modules/playwright
|
|
|
|
key: cache-playwright-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: cache-playwright-
|
|
|
|
- run: yarn --frozen-lockfile
|
|
|
|
- name: Install playwright deps
|
2022-09-02 02:00:48 +00:00
|
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
2022-05-30 17:11:05 +00:00
|
|
|
run: yarn playwright install --with-deps
|
2022-06-24 15:38:17 +00:00
|
|
|
- name: Run Tests
|
2022-06-22 20:41:19 +00:00
|
|
|
run: yarn turbo run embed-tests-update-snapshots:ci --scope=@calcom/embed-react --concurrency=1
|
2022-05-30 17:11:05 +00:00
|
|
|
|
|
|
|
- name: Upload embed-core results
|
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-results-core
|
|
|
|
path: packages/embeds/embed-core/playwright/results
|
|
|
|
|
|
|
|
- name: Upload embed-react results
|
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-results-react
|
|
|
|
path: packages/embeds/embed-react/playwright/results
|