Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Qa #11

Merged
merged 4 commits into from
May 24, 2023
Merged

Qa #11

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
QA changes
  • Loading branch information
Gunasekar-K committed Feb 15, 2023
commit d64dbacc8a954232e12746e59ccdb18b2b09b626
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ jobs:
APPNAME: "micro-frontends-react-app"
steps: *builddeploy_steps

# Build & Deploy against development backend
"build-qa":
<<: *defaults
environment:
DEPLOY_ENV: "QA"
LOGICAL_ENV: "qa"
APPNAME: "micro-frontends-react-app"
steps: *builddeploy_steps

"build-prod":
<<: *defaults
environment:
Expand All @@ -70,6 +79,14 @@ workflows:
only:
- dev

# Development builds are executed on "develop" branch only.
- "build-qa":
context: org-global
filters:
branches:
only:
- qa

# Production builds are exectuted only on tagged commits to the
# master branch.
- "build-prod":
Expand Down