create-qa-architect 5.10.3 → 5.10.4
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.
|
@@ -86,6 +86,21 @@ jobs:
|
|
|
86
86
|
echo "turbo-prefix=" >> $GITHUB_OUTPUT
|
|
87
87
|
fi
|
|
88
88
|
|
|
89
|
+
- name: Setup pnpm
|
|
90
|
+
if: steps.detect-pm.outputs.manager == 'pnpm'
|
|
91
|
+
uses: pnpm/action-setup@v4
|
|
92
|
+
with:
|
|
93
|
+
version: '8.15.0'
|
|
94
|
+
|
|
95
|
+
- name: Setup Bun
|
|
96
|
+
if: steps.detect-pm.outputs.manager == 'bun'
|
|
97
|
+
uses: oven-sh/setup-bun@v2
|
|
98
|
+
with:
|
|
99
|
+
bun-version: '1.0.0'
|
|
100
|
+
|
|
101
|
+
- name: Install dependencies for maturity detection
|
|
102
|
+
run: ${{ steps.detect-pm.outputs.install-cmd }}
|
|
103
|
+
|
|
89
104
|
- name: Detect Project Maturity
|
|
90
105
|
id: detect
|
|
91
106
|
run: |
|
|
@@ -125,6 +140,18 @@ jobs:
|
|
|
125
140
|
node-version: '22'
|
|
126
141
|
cache: ${{ needs.detect-maturity.outputs.package-manager }}
|
|
127
142
|
|
|
143
|
+
- name: Setup pnpm
|
|
144
|
+
if: needs.detect-maturity.outputs.package-manager == 'pnpm'
|
|
145
|
+
uses: pnpm/action-setup@v4
|
|
146
|
+
with:
|
|
147
|
+
version: '8.15.0'
|
|
148
|
+
|
|
149
|
+
- name: Setup Bun
|
|
150
|
+
if: needs.detect-maturity.outputs.package-manager == 'bun'
|
|
151
|
+
uses: oven-sh/setup-bun@v2
|
|
152
|
+
with:
|
|
153
|
+
bun-version: '1.0.0'
|
|
154
|
+
|
|
128
155
|
- name: Install dependencies
|
|
129
156
|
run: ${{ needs.detect-maturity.outputs.install-cmd }}
|
|
130
157
|
|
|
@@ -151,6 +178,18 @@ jobs:
|
|
|
151
178
|
node-version: '20'
|
|
152
179
|
cache: ${{ needs.detect-maturity.outputs.package-manager }}
|
|
153
180
|
|
|
181
|
+
- name: Setup pnpm
|
|
182
|
+
if: needs.detect-maturity.outputs.package-manager == 'pnpm'
|
|
183
|
+
uses: pnpm/action-setup@v4
|
|
184
|
+
with:
|
|
185
|
+
version: '8.15.0'
|
|
186
|
+
|
|
187
|
+
- name: Setup Bun
|
|
188
|
+
if: needs.detect-maturity.outputs.package-manager == 'bun'
|
|
189
|
+
uses: oven-sh/setup-bun@v2
|
|
190
|
+
with:
|
|
191
|
+
bun-version: '1.0.0'
|
|
192
|
+
|
|
154
193
|
- name: Install dependencies
|
|
155
194
|
run: ${{ needs.detect-maturity.outputs.install-cmd }}
|
|
156
195
|
|
|
@@ -189,6 +228,18 @@ jobs:
|
|
|
189
228
|
node-version: '20'
|
|
190
229
|
cache: ${{ needs.detect-maturity.outputs.package-manager }}
|
|
191
230
|
|
|
231
|
+
- name: Setup pnpm
|
|
232
|
+
if: needs.detect-maturity.outputs.package-manager == 'pnpm'
|
|
233
|
+
uses: pnpm/action-setup@v4
|
|
234
|
+
with:
|
|
235
|
+
version: '8.15.0'
|
|
236
|
+
|
|
237
|
+
- name: Setup Bun
|
|
238
|
+
if: needs.detect-maturity.outputs.package-manager == 'bun'
|
|
239
|
+
uses: oven-sh/setup-bun@v2
|
|
240
|
+
with:
|
|
241
|
+
bun-version: '1.0.0'
|
|
242
|
+
|
|
192
243
|
- name: Install dependencies
|
|
193
244
|
run: ${{ needs.detect-maturity.outputs.install-cmd }}
|
|
194
245
|
|
|
@@ -311,6 +362,18 @@ jobs:
|
|
|
311
362
|
node-version: ${{ matrix.node-version }}
|
|
312
363
|
cache: ${{ needs.detect-maturity.outputs.package-manager }}
|
|
313
364
|
|
|
365
|
+
- name: Setup pnpm
|
|
366
|
+
if: needs.detect-maturity.outputs.package-manager == 'pnpm'
|
|
367
|
+
uses: pnpm/action-setup@v4
|
|
368
|
+
with:
|
|
369
|
+
version: '8.15.0'
|
|
370
|
+
|
|
371
|
+
- name: Setup Bun
|
|
372
|
+
if: needs.detect-maturity.outputs.package-manager == 'bun'
|
|
373
|
+
uses: oven-sh/setup-bun@v2
|
|
374
|
+
with:
|
|
375
|
+
bun-version: '1.0.0'
|
|
376
|
+
|
|
314
377
|
- name: Install dependencies
|
|
315
378
|
run: |
|
|
316
379
|
echo "⏱️ Performance Budget: Dependency installation must complete within 2 minutes"
|
|
@@ -368,6 +431,18 @@ jobs:
|
|
|
368
431
|
node-version: '20'
|
|
369
432
|
cache: ${{ needs.detect-maturity.outputs.package-manager }}
|
|
370
433
|
|
|
434
|
+
- name: Setup pnpm
|
|
435
|
+
if: needs.detect-maturity.outputs.package-manager == 'pnpm'
|
|
436
|
+
uses: pnpm/action-setup@v4
|
|
437
|
+
with:
|
|
438
|
+
version: '8.15.0'
|
|
439
|
+
|
|
440
|
+
- name: Setup Bun
|
|
441
|
+
if: needs.detect-maturity.outputs.package-manager == 'bun'
|
|
442
|
+
uses: oven-sh/setup-bun@v2
|
|
443
|
+
with:
|
|
444
|
+
bun-version: '1.0.0'
|
|
445
|
+
|
|
371
446
|
- name: Install dependencies
|
|
372
447
|
run: ${{ needs.detect-maturity.outputs.install-cmd }}
|
|
373
448
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-qa-architect",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.4",
|
|
4
4
|
"description": "QA Architect - Bootstrap quality automation for JavaScript/TypeScript and Python projects with GitHub Actions, pre-commit hooks, linting, formatting, and smart test strategy",
|
|
5
5
|
"main": "setup.js",
|
|
6
6
|
"bin": {
|
|
@@ -198,6 +198,6 @@
|
|
|
198
198
|
"js-yaml": "^4.1.0",
|
|
199
199
|
"markdownlint-cli2": "^0.20.0",
|
|
200
200
|
"ora": "^8.1.1",
|
|
201
|
-
"tar": "^7.5.
|
|
201
|
+
"tar": "^7.5.4"
|
|
202
202
|
}
|
|
203
203
|
}
|