Skip to content

Commit c32f341

Browse files
committed
chore: Bump postman-collection to v5 and drop support for node < 18
1 parent aa57e0d commit c32f341

File tree

3 files changed

+63
-73
lines changed

3 files changed

+63
-73
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,21 @@ on:
1010
jobs:
1111
Unit-Tests:
1212
runs-on: ubuntu-20.04
13+
strategy:
14+
matrix:
15+
node-version: [ 18.x, 20.x, 22.x ]
1316
steps:
1417
- name: Get Code
1518
uses: actions/checkout@v3
16-
- name: Setup Node JS
19+
- name: Use Node JS ${{ matrix.node-version }}
1720
uses: actions/setup-node@v1
1821
with:
19-
node-version: '12.x'
22+
node-version: ${{ matrix.node-version }}
2023
- name: Install system dependencies
2124
run: npm run cirequirements
2225
- name: Install package dependencies
2326
run: npm install
2427
- name: Install dependencies for individual codegens
2528
run: npm run deepinstall dev
2629
- name: Run tests
27-
run: npm run test
30+
run: npm run test

package-lock.json

Lines changed: 55 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"detect-package-manager": "3.0.2",
3030
"lodash": "4.17.21",
3131
"path": "0.12.7",
32-
"postman-collection": "^4.4.0",
32+
"postman-collection": "^5.0.0",
3333
"shelljs": "0.8.5"
3434
},
3535
"devDependencies": {
@@ -55,6 +55,6 @@
5555
"watchify": "3.11.1"
5656
},
5757
"engines": {
58-
"node": ">=12"
58+
"node": ">=18"
5959
}
6060
}

0 commit comments

Comments
 (0)