Skip to content

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them #18

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them #18

name: Main Workflow
on:
pull_request:
permissions:
contents: read
jobs:
collect-shell-versions:
uses: ./.github/workflows/collect-shell-versions.yml
# build-plugins:
# needs: collect-shell-versions
# uses: ./.github/workflows/build-plugins.yml
# TODO debug step to check the value
print-outputs:
needs: collect-shell-versions
runs-on: ubuntu-22.04
steps:
- name: Print Output Debug
run: echo "non_deprecated_shell_versions=${{ needs.collect-shell-versions.outputs.non_deprecated_shell_versions }}"
test-plugins-against-cockpit:
# needs: [collect-shell-versions, build-plugins]
needs: [collect-shell-versions]
uses: ./.github/workflows/test-plugins-against-cockpit.yml
with:
non_deprecated_shell_versions: ${{ needs.collect-shell-versions.outputs.non_deprecated_shell_versions }}