Commerce Essentials Alias Preview #61
Workflow file for this run
This file contains 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
name: Commerce Essentials Alias Preview | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
deployment_status: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
ce-alias-preview: | |
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && github.event.deployment_status.environment == 'Preview – commerce-essentials' | |
runs-on: ubuntu-latest | |
environment: Preview – commerce-essentials | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: pnpm install && pnpm install --global vercel@latest | |
- name: Alias Project Preview | |
run: | | |
url=${{ github.event.deployment_status.environment_url }} | |
vercel alias --token=${{ secrets.VERCEL_TOKEN }} --scope="elasticpath-front" set "$url" "commerce-essentials-preview.vercel.app" | |
run-e2e-tests: | |
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && github.event.deployment_status.environment == 'Preview – commerce-essentials' | |
needs: ce-alias-preview | |
runs-on: ubuntu-latest | |
environment: Preview – commerce-essentials | |
defaults: | |
run: | |
working-directory: ./examples/commerce-essentials | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: pnpm install && npx playwright install --with-deps | |
- name: Make .env.test file | |
run: | | |
echo "NEXT_PUBLIC_EPCC_CLIENT_ID=${{vars.NEXT_PUBLIC_EPCC_CLIENT_ID}}" > .env.test | |
echo "EPCC_CLIENT_SECRET=${{secrets.EPCC_CLIENT_SECRET}}" >> .env.test | |
echo "NEXT_PUBLIC_EPCC_ENDPOINT_URL=${{vars.NEXT_PUBLIC_EPCC_ENDPOINT_URL}}" >> .env.test | |
echo "NEXT_PUBLIC_COOKIE_PREFIX_KEY=${{vars.NEXT_PUBLIC_COOKIE_PREFIX_KEY}}" >> .env.test | |
echo "SITE_NAME=${{vars.SITE_NAME}}" >> .env.test | |
- name: Run tests | |
run: | | |
pnpm test:e2e | |
pwd | |
ls ./ | |
ls ${{ github.workspace }}/ | |
env: | |
BASE_URL: ${{ github.event.deployment_status.environment_url }} | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results-${{ github.sha }}-${{ github.run_number }} | |
path: ${{ github.workspace }}/**/test-results/* |