Skip to content

Commit

Permalink
run devserver on devBlueprint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored Oct 18, 2024
1 parent 2b3ee67 commit 4c2d745
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .blueprint/github-build-matrix/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ export default class extends BaseGenerator {
if (this.workflow === 'docker-compose-integration') {
setGithubTaskOutput('matrix', JSON.stringify(convertToGitHubMatrix(dockerComposeMatrix), null, 2));
} else if (this.workflow === 'dev-server') {
const { devserverCi, client, angular, react, vue } = await getGitChanges();
const { devBlueprint, devserverCi, client, angular, react, vue } = await getGitChanges();
const matrix = {};
if (devserverCi || client || angular) {
if (devBlueprint || devserverCi || client || angular) {
// Object.assign(matrix, devServerMatrix.angular);
}
if (devserverCi || client || react) {
if (devBlueprint || devserverCi || client || react) {
Object.assign(matrix, devServerMatrix.react);
}
if (devserverCi || client || vue) {
if (devBlueprint || devserverCi || client || vue) {
Object.assign(matrix, devServerMatrix.vue);
}
const githubMatrix = convertToGitHubMatrix(matrix);
Expand Down

0 comments on commit 4c2d745

Please sign in to comment.