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 f50d629
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-full-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,48 +56,48 @@ 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
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: ""
display_name: "electron (win)"
currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/win' || 'electron/win' }}
report_testrail: true
report_testrail: 'true'
secrets: inherit

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: ""
project: "e2e-browser"
display_name: "browser (linux)"
currents_tags: ${{ github.event_name == 'schedule' && 'nightly,browser/linux' || 'browser/linux' }}
report_testrail: true
report_testrail: 'true'
secrets: inherit

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 f50d629

Please sign in to comment.