File tree Expand file tree Collapse file tree 2 files changed +18
-14
lines changed
Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 1+ name : Run postman collection
2+ on :
3+ workflow_dispatch :
4+
5+ jobs :
6+ run-postman-collection :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : Check out the repository
10+ uses : actions/checkout@v4
11+ - name : Set up Node.js
12+ uses : actions/setup-node@v4
13+ with :
14+ node-version : ' 22'
15+ - name : Install Newman
16+ run : npm install -g newman
17+ - name : Run Postman Collection
18+ run : newman run ./postman/Validate_Relationship_Service_Sandbox.postman_collection.json
Original file line number Diff line number Diff line change 2424 - name : Run Sandbox Unit Tests
2525 run : make test
2626 working-directory : ./sandbox
27-
28- run-postman-collection :
29- runs-on : ubuntu-latest
30- steps :
31- - name : Check out the repository
32- uses : actions/checkout@v4
33- - name : Set up Node.js
34- uses : actions/setup-node@v4
35- with :
36- node-version : ' 22'
37- - name : Install Newman
38- run : npm install -g newman
39- - name : Run Postman Collection
40- run : newman run ./postman/Validate_Relationship_Service_Sandbox.postman_collection.json
You can’t perform that action at this time.
0 commit comments