feat(slides): create open source presentation for blueprint collaboration event #679
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ===== ci(test/e2e) ====== | |
name: End-to-End Tests | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: self-hosted | |
steps: | |
- name: 🛎️ Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # All history for branches and tags | |
- name: Fetch main branch | |
run: git fetch origin main # Explicitly fetch the 'main' branch to ensure it's available | |
- name: 📦 Install Dependencies | |
run: pnpm i | |
# Do this one if pipeline shows `pnpm exec playwright install error` | |
# run: pnpm i && pnpm exec playwright install | |
# - name: ⚗️ Run E2E Tests for Affected Projects | |
# run: pnpm nx affected -t e2e --parallel=2 --reporter=html --base=origin/main --head=HEAD --verbose | |
- name: 💀 Run Docs E2E Test | |
env: | |
DATABASE_URI: ${{ secrets.DATABASE_URI }} | |
PAYLOAD_SECRET: ${{ secrets.PAYLOAD_SECRET }} | |
PAYLOAD_PUBLIC_EXTERNAL_SERVER_URL: ${{ secrets.PAYLOAD_PUBLIC_EXTERNAL_SERVER_URL }} | |
CORS_WHITELIST_ORIGINS: ${{ secrets.CORS_WHITELIST_ORIGINS }} | |
CSRF_WHITELIST_ORIGINS: ${{ secrets.CSRF_WHITELIST_ORIGINS }} | |
run: pnpm nx e2e docs-e2e --reporter=html --verbose | |
- name: 📄 Upload Docs E2E Playwright Report | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report-docs-e2e | |
path: playwright-report/**/* | |
retention-days: 30 | |
# - name: 💀 Run Website E2E Tests | |
# run: pnpm nx e2e website-e2e --reporter=html --verbose | |
# - name: 📄 Upload Website E2E Playwright Report | |
# uses: actions/upload-artifact@v4 | |
# if: always() | |
# with: | |
# name: playwright-report-website-e2e | |
# path: playwright-report/**/* | |
# retention-days: 30 | |
# - name: 💀 Run Portal E2E Tests | |
# run: pnpm nx run portal-e2e:e2e --reporter=html --verbose | |
# - name: 📄 Upload Portal E2E Playwright Report | |
# uses: actions/upload-artifact@v4 | |
# if: always() | |
# with: | |
# name: playwright-report-portal-e2e | |
# path: playwright-report/**/* | |
# retention-days: 30 | |
- name: 💰 Profit | |
run: echo 🐞 |