2022-07-14 12:40:53 +00:00
|
|
|
name: E2E App-Store Apps
|
|
|
|
on:
|
2023-02-22 00:10:39 +00:00
|
|
|
workflow_call:
|
|
|
|
|
2022-07-14 12:40:53 +00:00
|
|
|
jobs:
|
2023-02-22 00:10:39 +00:00
|
|
|
e2e-app-store:
|
2022-07-14 12:40:53 +00:00
|
|
|
timeout-minutes: 20
|
|
|
|
name: E2E App-Store Apps
|
2023-02-22 00:10:39 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-14 12:40:53 +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 }}
|
|
|
|
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-07-14 12:40:53 +00:00
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: calendso
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
|
|
|
steps:
|
2023-02-22 00:10:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/dangerous-git-checkout
|
2022-07-14 12:40:53 +00:00
|
|
|
- run: echo 'NODE_OPTIONS="--max_old_space_size=4096"' >> $GITHUB_ENV
|
2023-02-22 00:10:39 +00:00
|
|
|
- uses: ./.github/actions/yarn-install
|
|
|
|
- uses: ./.github/actions/yarn-playwright-install
|
|
|
|
- uses: ./.github/actions/cache-db
|
2022-07-14 12:40:53 +00:00
|
|
|
with:
|
2023-02-22 00:10:39 +00:00
|
|
|
DATABASE_URL: ${{ env.DATABASE_URL }}
|
|
|
|
- uses: ./.github/actions/cache-build
|
2022-07-14 12:40:53 +00:00
|
|
|
- name: Run Tests
|
2022-09-02 02:00:48 +00:00
|
|
|
run: yarn test-e2e:app-store
|
2022-07-14 12:40:53 +00:00
|
|
|
|
|
|
|
- name: Upload Test Results
|
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2022-09-02 19:00:41 +00:00
|
|
|
name: test-results
|
|
|
|
path: test-results
|