Skip to content

Commit

Permalink
remove curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
midleman committed Dec 13, 2024
1 parent 116b7c9 commit 2026a74
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-full-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ 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: ""
Expand All @@ -67,7 +67,7 @@ jobs:

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 @@ -78,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 @@ -90,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 2026a74

Please sign in to comment.