mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
name: E2E
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node-version: [18.x]
|
|
containers: [1, 2, 3, 4]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
# uses version from "packageManager" field in package.json
|
|
|
|
- name: Setup Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
# Need to skip setup if Cypress run is skipped, otherwise an error
|
|
# is thrown since the pnpm cache step fails
|
|
if: ${{ ( env.CYPRESS_RECORD_KEY != '' ) || ( matrix.containers == 1 ) }}
|
|
with:
|
|
cache: pnpm
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
# Install NPM dependencies, cache them correctly
|
|
# and run all Cypress tests
|
|
- name: Cypress run
|
|
uses: cypress-io/github-action@v4
|
|
# If CYPRESS_RECORD_KEY is set, run in parallel on all containers
|
|
# Otherwise (e.g. if running from fork), we run on a single container only
|
|
if: ${{ ( env.CYPRESS_RECORD_KEY != '' ) || ( matrix.containers == 1 ) }}
|
|
with:
|
|
start: pnpm run dev
|
|
wait-on: 'http://localhost:9000'
|
|
# Disable recording if we don't have an API key
|
|
# e.g. if this action was run from a fork
|
|
record: ${{ secrets.CYPRESS_RECORD_KEY != '' }}
|
|
parallel: ${{ secrets.CYPRESS_RECORD_KEY != '' }}
|
|
env:
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|