We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9d65c commit 729c2c8Copy full SHA for 729c2c8
.github/workflows/run-postman-collection.yml
.github/workflows/sandbox-checks.yaml
@@ -24,3 +24,14 @@ jobs:
24
- name: Run Sandbox Unit Tests
25
run: make test
26
working-directory: ./sandbox
27
+ - name: Set up Node.js
28
+ uses: actions/setup-node@v4
29
+ with:
30
+ node-version: '22'
31
+ - name: Install Newman
32
+ run: npm install -g newman
33
+ - name: Start dev sandbox
34
+ run: make start-dev
35
+ working-directory: ./sandbox
36
+ - name: Run Postman Collection
37
+ run: newman run ./postman/Validate_Relationship_Service_Sandbox.postman_collection.json -d ./postman/dev-variables.json
0 commit comments