Skip to content

Commit 7f9d65c

Browse files
committed
chore: updated pipelines to run postman collection separately
1 parent d4f41cf commit 7f9d65c

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

.github/workflows/sandbox-checks.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,3 @@ jobs:
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

0 commit comments

Comments
 (0)