You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompts.js
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,16 @@ module.exports = [
17
17
message: 'Do you want to use github actions for deployments?',
18
18
default: true,
19
19
},
20
+
{
21
+
name: 'useBuildAndLintAction',
22
+
type: 'confirm',
23
+
message: 'Do you want to add a github workflow action which "build and lint" on every pull request? It is a fail-safe that you only deploy code which can build.',
24
+
default: true,
25
+
},
20
26
{
21
27
name: 'addRobotsFile',
22
28
type: 'confirm',
23
-
message: 'Do you want to disallow robots (SEO) to visit this applications (Y: robots.txt is placed in public folder, N: if you use github actions for deployment, in the test deployment a robots.txt is generated)',
29
+
message: 'Do you want to disallow robots (SEO) to visit this applications (Y: robots.txt is placed in public folder, N: if you use github actions for deployment, in the test deployment a robots.txt is generated)?',
0 commit comments