Skip to content

Commit

Permalink
ci: e2e run install fe only for relevant scenarios (#1549)
Browse files Browse the repository at this point in the history
The `Install FE` step in `kubernetes-test` job for `e2e` workflow takes
a whole minute to run, but it is only needed for cypress which runs in
the `multi-apps`, `helm-chart` and `fe-synthetic` scenarios.

Run it conditionally so all the other 2 scenarios will finish 1 minute
earlier
  • Loading branch information
blumamir authored Sep 26, 2024
1 parent 461e284 commit d0674a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ jobs:
cluster_name: kind

- name: Install FE
# this is used for cypress tests which are not run in every scenario
if: matrix.test-scenario == 'multi-apps' || matrix.test-scenario == 'helm-chart' || matrix.test-scenario == 'fe-synthetic'
run: |
cd frontend/webapp
yarn install
Expand Down

0 comments on commit d0674a9

Please sign in to comment.