ras-stack 0.5.0 → 0.6.0
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.
- package/README.md +25 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -217,6 +217,31 @@ The workflow consumes pending changesets, commits the resulting versions and cha
|
|
|
217
217
|
|
|
218
218
|
Pin actions and reusable workflows to a release tag and let Dependabot propose upgrades.
|
|
219
219
|
|
|
220
|
+
The reusable check workflow owns checkout and toolchain setup while the repository keeps its check command:
|
|
221
|
+
|
|
222
|
+
```yaml
|
|
223
|
+
jobs:
|
|
224
|
+
check:
|
|
225
|
+
uses: richardsolomou/ras-stack/.github/workflows/check-js.yml@v0.6.0
|
|
226
|
+
with:
|
|
227
|
+
command: just check
|
|
228
|
+
just-version: '1.58.0'
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
Simple Playwright jobs can also share browser installation and failure artifacts:
|
|
232
|
+
|
|
233
|
+
```yaml
|
|
234
|
+
jobs:
|
|
235
|
+
end-to-end:
|
|
236
|
+
uses: richardsolomou/ras-stack/.github/workflows/check-browser.yml@v0.6.0
|
|
237
|
+
with:
|
|
238
|
+
prepare-command: pnpm build
|
|
239
|
+
command: pnpm test:e2e:run
|
|
240
|
+
artifact-path: test-results
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
Callers continue to own workflow triggers, concurrency, required-job dependencies, permissions, services, caches, custom setup, and release or deployment policy. Keep jobs local when they need steps beyond these stable shapes.
|
|
244
|
+
|
|
220
245
|
## Development
|
|
221
246
|
|
|
222
247
|
Development requires Node 24 and pnpm 11.15.0.
|