Skip to content

Commit

Permalink
Merge pull request #379 from entando/ENDOC-315-cicd
Browse files Browse the repository at this point in the history
ENDOC-315 CI/CD
  • Loading branch information
nshaw authored Jan 4, 2022
2 parents 6fa1036 + dd887ef commit abe4949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vuepress/docs/next/tutorials/ecr/github-actions-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ Ran all test suites.
## Extend the Frontend Job for Multiple MFEs
You may have multiple micro frontends or widgets in your project. One option is to duplicate the job for each MFE, but you can also use the GitHub Actions matrix feature to avoid duplicating those definitions.
1. Change your job definition to the following. Note the following changes we've made here:
1. Change your job definition to the following. Note the changes:
* The `job.name` is dynamically set using the MFE matrix name
* The `job.strategy` has been set to `fail-fast:false` so all MFEs will be tested rather than stopping the job on the first failure
* The `job.strategy` has been set to `fail-fast:false` so all MFEs will be tested, rather than stopping the job on the first failure
* The `job.strategy.matrix.mfe` provides the list of MFEs in this project. You should update this list to match your project.
* The first command in `Run tests` is parametrized to use the MFE matrix name
```yaml
Expand Down

0 comments on commit abe4949

Please sign in to comment.