Skip to content

Commit 0513100

Browse files
committed
feat: add simple multibranch
1 parent 29d36b8 commit 0513100

39 files changed

+749
-357
lines changed

__tests__/cli.test.ts

+10-9
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@ test('prints help', async () => {
1717
'--help',
1818
'--version',
1919
'--skip-git-check',
20-
'--preset',
21-
'Use any combination of the following with --preset flag to specify your own set of workflows to generate',
22-
'--lint',
23-
'--jest',
24-
'--ts',
25-
'--prettier',
26-
'--eas',
27-
'--detox',
28-
'--maestro',
20+
'-pull-request [...workflows]',
21+
'-main [...workflows]',
22+
'Use any combination of the following with --pull-request and --main flags to specify your own set of workflows to generate',
23+
'lint',
24+
'jest',
25+
'ts',
26+
'prettier',
27+
'eas',
28+
'detox',
29+
'maestro',
2930
]) {
3031
expect(output).toContain(message)
3132
}

__tests__/recipes/detox.test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
getPackageJsonWithoutVersions,
66
installDependencies,
77
NON_INTERACTIVE_FLAG,
8-
PRESET_FLAG,
8+
PULL_REQUEST_FLAG,
99
removeTestProject,
1010
setupTestProject,
1111
TEST_PROJECTS,
@@ -75,7 +75,7 @@ describe('detox recipe', () => {
7575
TEST_PROJECTS[projectName]
7676

7777
const output = await cli(
78-
[PRESET_FLAG, NON_INTERACTIVE_FLAG, `--${FLAG}`],
78+
[PULL_REQUEST_FLAG, FLAG, NON_INTERACTIVE_FLAG],
7979
{
8080
cwd: appRoot,
8181
}
@@ -88,12 +88,12 @@ describe('detox recipe', () => {
8888
'https://wix.github.io/Detox/docs/next/introduction/project-setup/#step-4-additional-android-configuration.',
8989
'You can do it now or after the script finishes.',
9090
`Detected ${packageManager} as your package manager.`,
91-
'Generating Detox workflow',
91+
'Configuring project for Detox',
9292
'Created Android release build workflow.',
9393
'Created iOS release build workflow.',
9494
'Consider adding "modulePathIgnorePatterns": ["e2e"] to your jest config.',
9595
'Remember to edit example test in e2e/starter.test.ts to match your app.',
96-
'Created Detox workflow.',
96+
'Created Detox workflow for events: [pull_request]',
9797
'Follow Step 4 of https://wix.github.io/Detox/docs/next/introduction/project-setup/#step-4-additional-android-configuration to patch native code for Detox.',
9898
]) {
9999
expect(output).toContain(message)
@@ -116,20 +116,20 @@ describe('detox recipe', () => {
116116

117117
installDependencies(appRoot, packageManager)
118118

119-
const output = await cli([PRESET_FLAG, `--${FLAG}`], {
119+
const output = await cli([PULL_REQUEST_FLAG, FLAG], {
120120
cwd: appRoot,
121121
})
122122

123123
for (const message of [
124124
`Detected ${packageManager} as your package manager.`,
125-
'Generating Detox workflow',
125+
'Configuring project for Detox',
126126
'Running Expo prebuild...',
127127
'Finished running Expo prebuild.',
128128
'Created Android release build workflow.',
129129
'Created iOS release build workflow.',
130130
'Consider adding "modulePathIgnorePatterns": ["e2e"] to your jest config.',
131131
'Remember to edit example test in e2e/starter.test.ts to match your app.',
132-
'Created Detox workflow.',
132+
'Created Detox workflow for events: [pull_request]',
133133
]) {
134134
expect(output).toContain(message)
135135
}

__tests__/recipes/jest.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { join } from 'path'
33
import {
44
cli,
55
getPackageJsonWithoutVersions,
6-
PRESET_FLAG,
6+
PULL_REQUEST_FLAG,
77
removeTestProject,
88
setupTestProject,
99
TEST_PROJECTS,
@@ -30,14 +30,14 @@ describe('jest recipe', () => {
3030
const { packageManager, repoRoot, appRoot, workflowNamePrefix } =
3131
TEST_PROJECTS[projectName]
3232

33-
const output = await cli([PRESET_FLAG, `--${FLAG}`], {
33+
const output = await cli([PULL_REQUEST_FLAG, FLAG], {
3434
cwd: appRoot,
3535
})
3636

3737
for (const message of [
3838
`Detected ${packageManager} as your package manager.`,
39-
'Generating Jest workflow',
40-
'Created Jest workflow.',
39+
'Configuring project for Jest',
40+
'Created Jest workflow for events: [pull_request]',
4141
]) {
4242
expect(output).toContain(message)
4343
}

__tests__/recipes/lint.test.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { join } from 'path'
33
import {
44
cli,
55
getPackageJsonWithoutVersions,
6-
PRESET_FLAG,
6+
PULL_REQUEST_FLAG,
77
removeTestProject,
88
setupTestProject,
99
TEST_PROJECTS,
@@ -37,14 +37,14 @@ describe('lint recipe', () => {
3737
existingConfig,
3838
} = TEST_PROJECTS[projectName]
3939

40-
const output = await cli([PRESET_FLAG, `--${FLAG}`], {
40+
const output = await cli([PULL_REQUEST_FLAG, FLAG], {
4141
cwd: appRoot,
4242
})
4343

4444
for (const message of [
4545
`Detected ${packageManager} as your package manager.`,
46-
'Generating ESLint workflow',
47-
'Created ESLint workflow.',
46+
'Configuring project for ESLint',
47+
'Created ESLint workflow for events: [pull_request]',
4848
]) {
4949
expect(output).toContain(message)
5050
}
@@ -75,11 +75,13 @@ describe('lint recipe', () => {
7575
setupTestProject('rn-setup-ci-yarn-flat')
7676
const { appRoot } = TEST_PROJECTS['rn-setup-ci-yarn-flat']
7777

78-
const output = await cli([PRESET_FLAG, `--${FLAG}`, `--${PRETTIER_FLAG}`], {
78+
const output = await cli([PULL_REQUEST_FLAG, FLAG, PRETTIER_FLAG], {
7979
cwd: appRoot,
8080
})
8181

82-
expect(output).toContain('Created ESLint workflow.')
82+
expect(output).toContain(
83+
'Created ESLint workflow for events: [pull_request]'
84+
)
8385

8486
const packageJson = await getPackageJsonWithoutVersions(
8587
join(appRoot, 'package.json')

__tests__/recipes/prettier.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { join } from 'path'
33
import {
44
cli,
55
getPackageJsonWithoutVersions,
6-
PRESET_FLAG,
6+
PULL_REQUEST_FLAG,
77
removeTestProject,
88
setupTestProject,
99
TEST_PROJECTS,
@@ -35,14 +35,14 @@ describe('prettier check recipe', () => {
3535
existingConfig,
3636
} = TEST_PROJECTS[projectName]
3737

38-
const output = await cli([PRESET_FLAG, `--${FLAG}`], {
38+
const output = await cli([PULL_REQUEST_FLAG, FLAG], {
3939
cwd: appRoot,
4040
})
4141

4242
for (const message of [
4343
`Detected ${packageManager} as your package manager.`,
44-
'Generating Prettier check workflow',
45-
'Created Prettier check workflow.',
44+
'Configuring project for Prettier check',
45+
'Created Prettier check workflow for events: [pull_request]',
4646
]) {
4747
expect(output).toContain(message)
4848
}

__tests__/recipes/typescript.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { join } from 'path'
33
import {
44
cli,
55
getPackageJsonWithoutVersions,
6-
PRESET_FLAG,
6+
PULL_REQUEST_FLAG,
77
removeTestProject,
88
setupTestProject,
99
TEST_PROJECTS,
@@ -30,14 +30,14 @@ describe('typescript check recipe', () => {
3030
const { packageManager, repoRoot, appRoot, workflowNamePrefix } =
3131
TEST_PROJECTS[projectName]
3232

33-
const output = await cli([PRESET_FLAG, `--${FLAG}`], {
33+
const output = await cli([PULL_REQUEST_FLAG, FLAG], {
3434
cwd: appRoot,
3535
})
3636

3737
for (const message of [
3838
`Detected ${packageManager} as your package manager.`,
39-
'Generating Typescript check workflow',
40-
'Created Typescript check workflow.',
39+
'Configuring project for Typescript check',
40+
'Created Typescript check workflow for events: [pull_request]',
4141
]) {
4242
expect(output).toContain(message)
4343
}

__tests__/runtime-version-file.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { join } from 'path'
22
import { readFileSync } from 'fs'
33
import {
44
cli,
5+
PULL_REQUEST_FLAG,
56
removeTestProject,
67
setupTestProject,
78
TEST_PROJECTS,
@@ -17,7 +18,7 @@ describe('should create runtime version files if necessary', () => {
1718
const { appRoot } = TEST_PROJECTS['rn-setup-ci-create-expo-stack']
1819
setupTestProject('rn-setup-ci-create-expo-stack')
1920

20-
const output = await cli(['--skip-git-check', '--preset', '--lint'], {
21+
const output = await cli(['--skip-git-check', PULL_REQUEST_FLAG, 'lint'], {
2122
cwd: appRoot,
2223
})
2324

@@ -43,7 +44,7 @@ describe('should create runtime version files if necessary', () => {
4344
const { appRoot } = TEST_PROJECTS['rn-setup-ci-create-expo-stack-bun']
4445
setupTestProject('rn-setup-ci-create-expo-stack-bun')
4546

46-
const output = await cli(['--skip-git-check', '--preset', '--lint'], {
47+
const output = await cli(['--skip-git-check', PULL_REQUEST_FLAG, 'lint'], {
4748
cwd: appRoot,
4849
})
4950

__tests__/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const PATH_TO_TEST_PROJECTS = join(__dirname, TEST_PROJECTS_FOLDER)
1010
const PATH_TO_TEST_PROJECT = join(__dirname, TEST_PROJECT_NAME)
1111

1212
export const NON_INTERACTIVE_FLAG = '--non-interactive'
13-
export const PRESET_FLAG = '--preset'
13+
export const PULL_REQUEST_FLAG = '-pull-request'
1414

1515
const INSTALL_DEPENDENCIES_COMMAND = {
1616
yarn: 'yarn',

src/commands/help.ts

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { GluegunCommand, GluegunToolbox } from 'gluegun'
22
import { CycliCommand } from './setup-ci'
3-
import { HELP_FLAG } from '../constants'
3+
import { HELP_FLAG, MAIN_FLAG, PULL_REQUEST_FLAG } from '../constants'
44

55
module.exports = {
66
name: HELP_FLAG,
@@ -28,30 +28,35 @@ module.exports = {
2828

2929
const maxFlagLength = Math.max(
3030
...[...cycliCommand.options, ...cycliCommand.featureOptions].map(
31-
(op) => op.flag.length + 2
31+
(op) => op.flag.length + 2 + (op.params ? '[...workflows]'.length : 0)
3232
)
3333
)
3434

3535
for (const option of cycliCommand.options) {
3636
toolbox.interactive.info(
3737
' ' +
38-
cyan(`--${option.flag}`.padEnd(maxFlagLength + 2, ' ')) +
38+
cyan(
39+
(option.params
40+
? `-${option.flag} [...workflows]`
41+
: `--${option.flag}`
42+
).padEnd(maxFlagLength + 2, ' ')
43+
) +
3944
'\t' +
4045
option.description
4146
)
4247
}
4348

4449
interactive.vspace()
4550
interactive.info(
46-
'Use any combination of the following with --preset flag to specify your own set of workflows to generate'
51+
`Use any combination of the following with -${PULL_REQUEST_FLAG} and -${MAIN_FLAG} flags to specify your own set of workflows to generate`
4752
)
4853
interactive.vspace()
49-
interactive.info(bold(underline('Feature flags:')))
54+
interactive.info(bold(underline('Available workflows:')))
5055

5156
for (const option of cycliCommand.featureOptions) {
5257
toolbox.interactive.info(
5358
' ' +
54-
cyan(`--${option.flag}`.padEnd(maxFlagLength + 2, ' ')) +
59+
cyan(option.flag.padEnd(maxFlagLength + 2, ' ')) +
5560
'\t' +
5661
option.description
5762
)

0 commit comments

Comments
 (0)