mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-22 17:56:43 +02:00
chore: Add tokenless auth to argos
This commit is contained in:
3
.github/workflows/e2e.yml
vendored
3
.github/workflows/e2e.yml
vendored
@@ -134,6 +134,9 @@ jobs:
|
|||||||
ARGOS_PARALLEL: ${{ env.RUN_VISUAL_TEST == 'true' }}
|
ARGOS_PARALLEL: ${{ env.RUN_VISUAL_TEST == 'true' }}
|
||||||
ARGOS_PARALLEL_TOTAL: ${{ env.RUN_VISUAL_TEST == 'true' && strategy.job-total || 1 }}
|
ARGOS_PARALLEL_TOTAL: ${{ env.RUN_VISUAL_TEST == 'true' && strategy.job-total || 1 }}
|
||||||
ARGOS_PARALLEL_INDEX: ${{ env.RUN_VISUAL_TEST == 'true' && matrix.containers || 1 }}
|
ARGOS_PARALLEL_INDEX: ${{ env.RUN_VISUAL_TEST == 'true' && matrix.containers || 1 }}
|
||||||
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||||
|
GITHUB_JOB: ${{ github.job }}
|
||||||
|
GITHUB_RUN_ID: ${{ github.run_id }}
|
||||||
CYPRESS_COMMIT: ${{ github.sha }}
|
CYPRESS_COMMIT: ${{ github.sha }}
|
||||||
CYPRESS_RECORD_KEY: ${{ env.RUN_VISUAL_TEST == 'true' && secrets.CYPRESS_RECORD_KEY || ''}}
|
CYPRESS_RECORD_KEY: ${{ env.RUN_VISUAL_TEST == 'true' && secrets.CYPRESS_RECORD_KEY || ''}}
|
||||||
SPLIT: ${{ strategy.job-total }}
|
SPLIT: ${{ strategy.job-total }}
|
||||||
|
@@ -5,6 +5,14 @@ import { defineConfig } from 'cypress';
|
|||||||
import { addMatchImageSnapshotPlugin } from 'cypress-image-snapshot/plugin';
|
import { addMatchImageSnapshotPlugin } from 'cypress-image-snapshot/plugin';
|
||||||
import cypressSplit from 'cypress-split';
|
import cypressSplit from 'cypress-split';
|
||||||
|
|
||||||
|
const encodeArgosToken = (options: {
|
||||||
|
owner: string;
|
||||||
|
repository: string;
|
||||||
|
jobId: string;
|
||||||
|
runId: string;
|
||||||
|
}) => `tokenless-github-${Buffer.from(JSON.stringify(options), 'utf8').toString('base64')}`;
|
||||||
|
// cspell:ignore tokenless
|
||||||
|
|
||||||
export default eyesPlugin(
|
export default eyesPlugin(
|
||||||
defineConfig({
|
defineConfig({
|
||||||
projectId: 'n2sma2',
|
projectId: 'n2sma2',
|
||||||
@@ -26,8 +34,22 @@ export default eyesPlugin(
|
|||||||
config.env.useArgos = !!process.env.CI && !!process.env.ARGOS_TOKEN;
|
config.env.useArgos = !!process.env.CI && !!process.env.ARGOS_TOKEN;
|
||||||
|
|
||||||
if (config.env.useArgos) {
|
if (config.env.useArgos) {
|
||||||
|
if (!process.env.GITHUB_REPOSITORY) {
|
||||||
|
throw new Error('GITHUB_REPOSITORY is not set');
|
||||||
|
}
|
||||||
|
if (!process.env.GITHUB_JOB) {
|
||||||
|
throw new Error('GITHUB_JOB is not set');
|
||||||
|
}
|
||||||
|
if (!process.env.GITHUB_RUN_ID) {
|
||||||
|
throw new Error('GITHUB_RUN_ID is not set');
|
||||||
|
}
|
||||||
registerArgosTask(on, config, {
|
registerArgosTask(on, config, {
|
||||||
token: 'argos_cde7ec66b3c53730a7bbe4059a517f4a76',
|
token: encodeArgosToken({
|
||||||
|
owner: process.env.GITHUB_REPOSITORY.split('/')[0],
|
||||||
|
repository: process.env.GITHUB_REPOSITORY.split('/')[1],
|
||||||
|
jobId: process.env.GITHUB_JOB,
|
||||||
|
runId: process.env.GITHUB_RUN_ID,
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
addMatchImageSnapshotPlugin(on, config);
|
addMatchImageSnapshotPlugin(on, config);
|
||||||
|
Reference in New Issue
Block a user