-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into sidv/vitest
* develop: (23 commits) Revert #3475 chore: updyaate browsers list Support EMPTYSTR in jison parser, add unit tests for git graph parser Use undefined to mean default tagging behavior feat(git): allow cherry-pick to suppress tag altogether Update src/diagrams/git/parser/gitGraph.jison fix(git): fix cherry-pick regex parsing error test(git): add basic parsing test for cherry-pick feat(git): cherry-pick keyword supports tag attribute ci(e2e-applitols): add applitools CI action Test docs:verify Cleanup docs Fixed Linting issues ci(e2e): re-enable e2e tests style: fix .github/workflow/e2e styling chore: upgrade cypress to v10 fix(flowchart-v2): fix arrowMarkerAbsolute=true test(e2e): fix most arrowMarkerAbsolute tests text(e2e): give git tests consistent commit id test(e2e): widen flowchart width to within 10% ...
- Loading branch information
Showing
25 changed files
with
357 additions
and
187 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: E2E (Applitools) | ||
|
||
on: | ||
workflow_dispatch: | ||
# Because we want to limit Applitools usage, so we only want to start this | ||
# workflow on rare occasions/manually. | ||
inputs: | ||
parent_branch: | ||
required: true | ||
type: string | ||
default: master | ||
description: 'Parent branch to use for PRs' | ||
|
||
permissions: | ||
contents: read | ||
|
||
env: | ||
# on PRs from forks, this secret will always be empty, for security reasons | ||
USE_APPLI: ${{ secrets.APPLITOOLS_API_KEY && 'true' || '' }} | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
steps: | ||
- if: ${{ ! env.USE_APPLI }} | ||
name: Warn if not using Applitools | ||
run: | | ||
echo "::error,title=Not using Applitols::APPLITOOLS_API_KEY is empty, disabling Applitools for this run." | ||
- uses: actions/checkout@v3 | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install Yarn | ||
run: npm i yarn --global | ||
|
||
- name: Install Packages | ||
run: | | ||
yarn install --frozen-lockfile | ||
env: | ||
CYPRESS_CACHE_FOLDER: .cache/Cypress | ||
|
||
- name: Run Build | ||
run: yarn build | ||
|
||
- if: ${{ env.USE_APPLI }} | ||
name: Notify applitools of new batch | ||
# Copied from docs https://applitools.com/docs/topics/integrations/github-integration-ci-setup.html | ||
run: curl -L -d '' -X POST "$APPLITOOLS_SERVER_URL/api/externals/github/push?apiKey=$APPLITOOLS_API_KEY&CommitSha=$GITHUB_SHA&BranchName=${APPLITOOLS_BRANCH}$&ParentBranchName=$APPLITOOLS_PARENT_BRANCH" | ||
env: | ||
# e.g. mermaid-js/mermaid/my-branch | ||
APPLITOOLS_BRANCH: ${{ github.repository }}/${{ github.ref_name }} | ||
APPLITOOLS_PARENT_BRANCH: ${{ github.inputs.parent_branch }} | ||
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | ||
APPLITOOLS_SERVER_URL: 'https://eyesapi.applitools.com' | ||
|
||
- name: Run E2E Tests | ||
run: yarn e2e | ||
env: | ||
CYPRESS_CACHE_FOLDER: .cache/Cypress | ||
# Mermaid applitools.config.js uses this to pick batch name. | ||
APPLI_BRANCH: ${{ github.ref_name }} | ||
APPLITOOLS_BATCH_ID: ${{ github.sha }} | ||
# e.g. mermaid-js/mermaid/my-branch | ||
APPLITOOLS_BRANCH: ${{ github.repository }}/${{ github.ref_name }} | ||
APPLITOOLS_PARENT_BRANCH: ${{ github.inputs.parent_branch }} | ||
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} | ||
APPLITOOLS_SERVER_URL: 'https://eyesapi.applitools.com' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: E2E | ||
|
||
on: [push, pull_request] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: yarn | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install Yarn | ||
run: npm i yarn --global | ||
|
||
- name: Install Packages | ||
run: | | ||
yarn install --frozen-lockfile | ||
env: | ||
CYPRESS_CACHE_FOLDER: .cache/Cypress | ||
|
||
- name: Run Build | ||
run: yarn build | ||
|
||
- name: Run E2E Tests | ||
run: yarn e2e | ||
env: | ||
CYPRESS_CACHE_FOLDER: .cache/Cypress |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
const { defineConfig } = require('cypress'); | ||
|
||
module.exports = defineConfig({ | ||
testConcurrency: 1, | ||
browser: [ | ||
// Add browsers with different viewports | ||
// { width: 800, height: 600, name: 'chrome' }, | ||
// { width: 700, height: 500, name: 'firefox' }, | ||
// { width: 1600, height: 1200, name: 'ie11' }, | ||
// { width: 1024, height: 768, name: 'edgechromium' }, | ||
// { width: 800, height: 600, name: 'safari' }, | ||
// // Add mobile emulation devices in Portrait mode | ||
// { deviceName: 'iPhone X', screenOrientation: 'portrait' }, | ||
// { deviceName: 'Pixel 2', screenOrientation: 'portrait' }, | ||
], | ||
// set batch name to the configuration | ||
batchName: `Mermaid ${process.env.APPLI_BRANCH ?? "'no APPLI_BRANCH set'"}`, | ||
}); |
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.