2021-09-02 16:41:15 +00:00
|
|
|
name: E2E test
|
2022-01-13 18:09:37 +00:00
|
|
|
on:
|
2022-01-13 19:37:34 +00:00
|
|
|
pull_request_target:
|
2022-01-13 18:09:37 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2022-02-08 15:42:05 +00:00
|
|
|
paths-ignore:
|
|
|
|
- public/static/locales/**
|
2021-09-02 16:41:15 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
timeout-minutes: 10
|
2022-02-10 18:54:17 +00:00
|
|
|
name: Testing ${{ matrix.node }} and ${{ matrix.os }}
|
2021-09-02 16:41:15 +00:00
|
|
|
env:
|
|
|
|
DATABASE_URL: postgresql://postgres:@localhost:5432/calendso
|
|
|
|
BASE_URL: http://localhost:3000
|
2021-09-23 13:11:58 +00:00
|
|
|
JWT_SECRET: secret
|
2022-01-13 16:52:31 +00:00
|
|
|
GOOGLE_API_CREDENTIALS: ${{ secrets.CI_GOOGLE_API_CREDENTIALS }}
|
2022-01-13 20:45:44 +00:00
|
|
|
GOOGLE_LOGIN_ENABLED: true
|
2021-09-02 16:41:15 +00:00
|
|
|
# CRON_API_KEY: xxx
|
2021-12-17 16:58:23 +00:00
|
|
|
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
|
2022-01-13 20:05:23 +00:00
|
|
|
SAML_DATABASE_URL: postgresql://postgres:@localhost:5432/calendso
|
|
|
|
SAML_ADMINS: pro@example.com
|
2021-09-02 16:41:15 +00:00
|
|
|
# NEXTAUTH_URL: xxx
|
2022-02-16 10:47:23 +00:00
|
|
|
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 }}
|
2021-09-02 16:41:15 +00:00
|
|
|
# MS_GRAPH_CLIENT_ID: xxx
|
|
|
|
# MS_GRAPH_CLIENT_SECRET: xxx
|
|
|
|
# ZOOM_CLIENT_ID: xxx
|
|
|
|
# ZOOM_CLIENT_SECRET: xxx
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:12.1
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: calendso
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node: ["14.x"]
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
2022-01-13 19:37:34 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
fetch-depth: 2
|
2021-09-02 16:41:15 +00:00
|
|
|
|
|
|
|
- name: Use Node ${{ matrix.node }}
|
2022-02-10 01:19:28 +00:00
|
|
|
uses: actions/setup-node@v2
|
2021-09-02 16:41:15 +00:00
|
|
|
with:
|
2022-02-10 01:19:28 +00:00
|
|
|
cache: "yarn"
|
|
|
|
cache-dependency-path: yarn.lock
|
2021-09-02 16:41:15 +00:00
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
|
2022-02-10 01:19:28 +00:00
|
|
|
- name: Turbo Cache
|
|
|
|
id: turbo-cache
|
2021-09-02 16:41:15 +00:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2022-02-10 01:19:28 +00:00
|
|
|
path: .turbo
|
2022-02-15 19:18:14 +00:00
|
|
|
key: turbo-${{ github.job }}-${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.sha }}
|
2021-12-15 16:25:49 +00:00
|
|
|
restore-keys: |
|
2022-02-15 19:18:14 +00:00
|
|
|
turbo-${{ github.job }}-${{ github.event.pull_request.head.ref }}-
|
2022-02-11 02:22:33 +00:00
|
|
|
- run: yarn
|
2021-11-02 14:19:40 +00:00
|
|
|
- name: Cache playwright binaries
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: playwright-cache
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/Library/Caches/ms-playwright
|
|
|
|
~/.cache/ms-playwright
|
|
|
|
**/node_modules/playwright
|
|
|
|
key: cache-playwright-${{ hashFiles('**/yarn.lock') }}
|
2022-02-15 17:44:30 +00:00
|
|
|
|
2021-11-02 14:19:40 +00:00
|
|
|
- name: Install playwright deps
|
|
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
2021-12-15 16:25:49 +00:00
|
|
|
run: yarn playwright install --with-deps
|
2022-02-15 17:44:30 +00:00
|
|
|
- run: yarn test-e2e
|
2021-09-02 16:41:15 +00:00
|
|
|
|
|
|
|
- name: Upload videos
|
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: videos
|
|
|
|
path: |
|
2022-02-15 20:30:52 +00:00
|
|
|
test-results
|
2021-10-07 15:07:57 +00:00
|
|
|
playwright/screenshots
|
2021-10-13 13:26:56 +00:00
|
|
|
playwright/videos
|
2022-01-07 20:23:37 +00:00
|
|
|
playwright/results
|
2022-02-08 16:30:21 +00:00
|
|
|
playwright/reports
|