Skip to content

Commit

Permalink
fix 'true'
Browse files Browse the repository at this point in the history
  • Loading branch information
midleman committed Dec 13, 2024
1 parent 8b75d72 commit 116b7c9
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test-full-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,18 @@ jobs:
e2e-electron:
name: e2e
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_linux == true }}
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_linux == 'true' }}
uses: ./.github/workflows/test-e2e-linux.yml
with:
grep: ""
project: "e2e-electron"
display_name: "electron (linux)"
currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/linux' || 'electron/linux' }}
report_testrail: true
secrets: inherit

e2e-windows:
name: e2e
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_windows == true }}
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_windows == 'true' }}
uses: ./.github/workflows/test-e2e-windows.yml
with:
grep: ""
Expand All @@ -79,7 +78,7 @@ jobs:

e2e-browser:
name: e2e
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_browser == true }}
if: github.event_name == 'schedule' || ${{ inputs.run_e2e_browser == 'true' }}
uses: ./.github/workflows/test-e2e-linux.yml
with:
grep: ""
Expand All @@ -91,13 +90,13 @@ jobs:

unit-tests:
name: test
if: github.event_name == 'schedule' || ${{ inputs.run_unit_tests == true }}
if: github.event_name == 'schedule' || ${{ inputs.run_unit_tests == 'true' }}
uses: ./.github/workflows/test-unit.yml
secrets: inherit

integration-tests:
name: test
if: github.event_name == 'schedule' || ${{ inputs.run_integration_tests == true }}
if: github.event_name == 'schedule' || ${{ inputs.run_integration_tests == 'true' }}
uses: ./.github/workflows/test-integration.yml
secrets: inherit

Expand Down

0 comments on commit 116b7c9

Please sign in to comment.