Skip to content
name: Cypress 12 experimental tests
on:
push:
branches: ['**']
pull_request:
branches: ['**']
paths-ignore:
- '**/*.md'
- 'docs/**'
- '.lycheeignore'
- 'CODEOWNERS'
- 'changelogs/fragments/**'
env:
CYPRESS_BROWSER: 'chromium'
CYPRESS_VISBUILDER_ENABLED: true
CYPRESS_DATASOURCE_MANAGEMENT_ENABLED: false
OSD_SNAPSHOT_SKIP_VERIFY_CHECKSUM: true
NODE_OPTIONS: '--max-old-space-size=6144 --dns-result-order=ipv4first'
COMMENT_TAG: '[MANUAL CYPRESS TEST RUN RESULTS]'
COMMENT_SUCCESS_MSG: ':white_check_mark: Cypress test run succeeded!'
COMMENT_FAILURE_MSG: ':x: Cypress test run failed!'
LATEST_VERSION: '3.0.0'
COVERAGE: true
COMBINATIONS:
- [SECURITY]

Check failure on line 28 in .github/workflows/cypress_tests_workflow.yml

View workflow run for this annotation

GitHub Actions / Cypress 12 experimental tests

Invalid workflow file

The workflow is not valid. .github/workflows/cypress_tests_workflow.yml (Line: 28, Col: 5): A sequence was not expected
- [WORKSPACE]
- [DATA_SOURCE]
- [SECURITY, WORKSPACE]
- [SECURITY, DATA_SOURCE]
- [WORKSPACE, DATA_SOURCE]
- [SECURITY, WORKSPACE, DATA_SOURCE]
- [FEATURE_FLAG]
jobs:
trigger-cypress-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Trigger tests for combinations
run: |
for combo in "${COMBINATIONS[@]}"; do
echo "Triggering tests with combination: ${combo[*]}"
inputs=""
for var in "${combo[@]}"; do
inputs="$inputs -f $var=true"
done
echo "Input: ${inputs}"
done