Skip to content

Commit

Permalink
omg srsly
Browse files Browse the repository at this point in the history
  • Loading branch information
midleman committed Dec 13, 2024
1 parent 2026a74 commit 53d5428
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test-full-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ on:
- never

jobs:
echo:
trigger:
runs-on: ubuntu-latest
steps:
- run: |
Expand All @@ -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 }}
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 }}
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 }}
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 }}
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 }}
uses: ./.github/workflows/test-integration.yml
secrets: inherit

Expand Down

0 comments on commit 53d5428

Please sign in to comment.