mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +02:00
152 lines
5.6 KiB
YAML
152 lines
5.6 KiB
YAML
name: E2E
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
- master
|
|
- release/**
|
|
pull_request:
|
|
merge_group:
|
|
|
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
# For PRs and MergeQueues, the target commit is used, and for push events to non-develop branches, github.event.previous is used if available. Otherwise, 'develop' is used.
|
|
targetHash: >-
|
|
${{
|
|
github.event.pull_request.base.sha ||
|
|
github.event.merge_group.base_sha ||
|
|
(
|
|
(
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/develop') ||
|
|
github.event.before == '0000000000000000000000000000000000000000'
|
|
) && 'develop'
|
|
) ||
|
|
github.event.before
|
|
}}
|
|
RUN_VISUAL_TEST: >-
|
|
${{ github.repository == 'mermaid-js/mermaid' && (github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/')) }}
|
|
jobs:
|
|
cache:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: cypress/browsers:node-20.11.0-chrome-121.0.6167.85-1-ff-120.0-edge-121.0.2277.83-1
|
|
options: --user 1001
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
|
with:
|
|
node-version-file: '.node-version'
|
|
- name: Cache snapshots
|
|
id: cache-snapshot
|
|
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
|
with:
|
|
path: ./cypress/snapshots
|
|
key: ${{ runner.os }}-snapshots-${{ env.targetHash }}
|
|
|
|
# If a snapshot for a given Hash is not found, we checkout that commit, run the tests and cache the snapshots.
|
|
- name: Switch to base branch
|
|
if: ${{ steps.cache-snapshot.outputs.cache-hit != 'true' }}
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ env.targetHash }}
|
|
|
|
- name: Install dependencies
|
|
if: ${{ steps.cache-snapshot.outputs.cache-hit != 'true' }}
|
|
uses: cypress-io/github-action@18a6541367f4580a515371905f499a27a44e8dbe # v6.7.12
|
|
with:
|
|
# just perform install
|
|
runTests: false
|
|
|
|
- name: Calculate bundle size
|
|
if: ${{ steps.cache-snapshot.outputs.cache-hit != 'true'}}
|
|
run: |
|
|
pnpm run build:viz
|
|
mkdir -p cypress/snapshots/stats/base
|
|
mv stats cypress/snapshots/stats/base
|
|
|
|
e2e:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: cypress/browsers:node-20.11.0-chrome-121.0.6167.85-1-ff-120.0-edge-121.0.2277.83-1
|
|
options: --user 1001
|
|
needs: cache
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
containers: [1, 2, 3, 4, 5]
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
|
# uses version from "packageManager" field in package.json
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
|
|
with:
|
|
node-version-file: '.node-version'
|
|
|
|
# These cached snapshots are downloaded, providing the reference snapshots.
|
|
- name: Cache snapshots
|
|
id: cache-snapshot
|
|
uses: actions/cache/restore@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
|
|
with:
|
|
path: ./cypress/snapshots
|
|
key: ${{ runner.os }}-snapshots-${{ env.targetHash }}
|
|
|
|
- name: Install dependencies
|
|
uses: cypress-io/github-action@18a6541367f4580a515371905f499a27a44e8dbe # v6.7.12
|
|
with:
|
|
runTests: false
|
|
|
|
- name: Output size diff
|
|
if: ${{ matrix.containers == 1 }}
|
|
run: |
|
|
pnpm run build:viz
|
|
mv stats cypress/snapshots/stats/head
|
|
echo '## Bundle size difference' >> "$GITHUB_STEP_SUMMARY"
|
|
echo '' >> "$GITHUB_STEP_SUMMARY"
|
|
npx tsx scripts/size.ts >> "$GITHUB_STEP_SUMMARY"
|
|
|
|
# Install NPM dependencies, cache them correctly
|
|
# and run all Cypress tests
|
|
- name: Cypress run
|
|
uses: cypress-io/github-action@18a6541367f4580a515371905f499a27a44e8dbe # v6.7.12
|
|
id: cypress
|
|
with:
|
|
install: false
|
|
start: pnpm run dev:coverage
|
|
wait-on: 'http://localhost:9000'
|
|
browser: chrome
|
|
# Disable recording if we don't have an API key
|
|
# e.g. if this action was run from a fork
|
|
record: ${{ env.RUN_VISUAL_TEST == 'true' && secrets.CYPRESS_RECORD_KEY != '' }}
|
|
env:
|
|
ARGOS_PARALLEL: ${{ env.RUN_VISUAL_TEST == 'true' }}
|
|
ARGOS_PARALLEL_TOTAL: ${{ env.RUN_VISUAL_TEST == 'true' && strategy.job-total || 1 }}
|
|
ARGOS_PARALLEL_INDEX: ${{ env.RUN_VISUAL_TEST == 'true' && matrix.containers || 1 }}
|
|
CYPRESS_COMMIT: ${{ github.sha }}
|
|
CYPRESS_RECORD_KEY: ${{ env.RUN_VISUAL_TEST == 'true' && secrets.CYPRESS_RECORD_KEY || ''}}
|
|
SPLIT: ${{ strategy.job-total }}
|
|
SPLIT_INDEX: ${{ strategy.job-index }}
|
|
SPLIT_FILE: 'cypress/timings.json'
|
|
VITEST_COVERAGE: true
|
|
|
|
- name: Upload Coverage to Codecov
|
|
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
|
|
# Run step only pushes to develop and pull_requests
|
|
if: ${{ steps.cypress.conclusion == 'success' && (github.event_name == 'pull_request' || github.ref == 'refs/heads/develop')}}
|
|
with:
|
|
files: coverage/cypress/lcov.info
|
|
flags: e2e
|
|
name: mermaid-codecov
|
|
fail_ci_if_error: false
|
|
verbose: true
|
|
token: 6845cc80-77ee-4e17-85a1-026cd95e0766
|