stable-ci 0.1.3 → 0.1.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.
- package/README.md +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -129,6 +129,16 @@ PASS late_payment
|
|
|
129
129
|
|
|
130
130
|
A failed scenario causes a non-zero exit code, so it can fail CI.
|
|
131
131
|
|
|
132
|
+
## Working example
|
|
133
|
+
|
|
134
|
+
A complete external integration example is available here:
|
|
135
|
+
|
|
136
|
+
https://github.com/saldfsdk/stable-ci-example
|
|
137
|
+
|
|
138
|
+
The example repository installs `stable-ci` from npm, starts a test payment application, and runs `saldfsdk/stable-ci@v0.1.3` as a GitHub Action from a separate repository.
|
|
139
|
+
|
|
140
|
+
Its CI verifies the full external integration path and produces a JUnit report.
|
|
141
|
+
|
|
132
142
|
## Expected outcomes
|
|
133
143
|
|
|
134
144
|
Different applications may intentionally handle payment exceptions differently.
|
|
@@ -161,9 +171,9 @@ This repository includes a composite GitHub Action.
|
|
|
161
171
|
|
|
162
172
|
```yaml
|
|
163
173
|
steps:
|
|
164
|
-
- uses: actions/checkout@
|
|
174
|
+
- uses: actions/checkout@v7
|
|
165
175
|
|
|
166
|
-
- uses: saldfsdk/stable-ci@v0.1.
|
|
176
|
+
- uses: saldfsdk/stable-ci@v0.1.3
|
|
167
177
|
with:
|
|
168
178
|
config: stable-ci.yml
|
|
169
179
|
junit: reports/stable-ci.xml
|