@smoothbricks/cli 0.10.11 → 0.10.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -274,6 +274,7 @@ ${renderRunsOnLine(options.runsOn)}
|
|
|
274
274
|
|
|
275
275
|
# Step 4
|
|
276
276
|
- name: Deployment E2E
|
|
277
|
+
# prettier-ignore
|
|
277
278
|
run: smoo github-ci nx-smart --target e2e-deployment --mode run-many --stage "\${{ needs.main.outputs.deployment-stage }}" --name "Deployment E2E" --step 4
|
|
278
279
|
|
|
279
280
|
# Step 5
|
package/package.json
CHANGED
|
@@ -78,10 +78,12 @@ describe('CI workflow definition', () => {
|
|
|
78
78
|
|
|
79
79
|
expect(rendered).toContain('deployment-stage: ${{ steps.deploy.outputs.stage }}');
|
|
80
80
|
expect(rendered).toContain(' e2e-deployment:\n name: Deployment E2E\n needs: main');
|
|
81
|
+
expect(rendered).not.toContain('\n\n\n e2e-deployment:');
|
|
81
82
|
expect(rendered).toContain(
|
|
82
83
|
"if: ${{ needs.main.result == 'success' && needs.main.outputs.deployment-stage != '' }}",
|
|
83
84
|
);
|
|
84
85
|
expect(rendered).toContain('timeout-minutes: 15');
|
|
86
|
+
expect(rendered).toContain('# prettier-ignore\n run: smoo github-ci nx-smart --target e2e-deployment');
|
|
85
87
|
expect(rendered).toContain(
|
|
86
88
|
'smoo github-ci nx-smart --target e2e-deployment --mode run-many --stage "${{ needs.main.outputs.deployment-stage }}" --name "Deployment E2E" --step 4',
|
|
87
89
|
);
|
|
@@ -316,6 +316,7 @@ ${renderRunsOnLine(options.runsOn)}
|
|
|
316
316
|
|
|
317
317
|
# Step 4
|
|
318
318
|
- name: Deployment E2E
|
|
319
|
+
# prettier-ignore
|
|
319
320
|
run: smoo github-ci nx-smart --target e2e-deployment --mode run-many --stage "\${{ needs.main.outputs.deployment-stage }}" --name "Deployment E2E" --step 4
|
|
320
321
|
|
|
321
322
|
# Step 5
|