Skip to content

Commit f35965b

Browse files
authored
Merge pull request #242 from sonallux/feature/bump-pact-version
feat: Bump pact to 12.0.0
2 parents d655ba1 + 5c9d7eb commit f35965b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: macos-latest
1111
strategy:
1212
matrix:
13-
node-version: [14.x, 16.x, 18.x]
13+
node-version: [16.x, 18.x, 20.x]
1414
fail-fast: false
1515

1616
steps:
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
strategy:
3535
matrix:
36-
node-version: [14.x, 16.x, 18.x]
36+
node-version: [16.x, 18.x, 20.x]
3737
fail-fast: false
3838

3939
steps:
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: windows-latest
5959
strategy:
6060
matrix:
61-
node-version: [14.x, 16.x, 18.x]
61+
node-version: [16.x, 18.x, 20.x]
6262
fail-fast: false
6363

6464
steps:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 0
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 14
17+
node-version: 16
1818
registry-url: 'https://registry.npmjs.org'
1919
- id: publish
2020
run: scripts/ci/release.sh

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"type": "git",
2222
"url": "git+https://github.com/pact-foundation/jest-pact.git"
2323
},
24+
"engines": {
25+
"node": ">=16"
26+
},
2427
"author": "YOU54F",
2528
"contributors": [
2629
{
@@ -40,7 +43,7 @@
4043
"devDependencies": {
4144
"@commitlint/cli": "^10.0.0",
4245
"@commitlint/config-conventional": "^10.0.0",
43-
"@pact-foundation/pact": "^11.0.2",
46+
"@pact-foundation/pact": "^12.0.0",
4447
"@pact-foundation/pact-js-prettier-config": "^1.0.0",
4548
"@tsconfig/node14": "^1.0.3",
4649
"@types/jest": "^29.2.3",
@@ -69,7 +72,7 @@
6972
"typescript": "4.6.4"
7073
},
7174
"peerDependencies": {
72-
"@pact-foundation/pact": "^v10.0.0-beta.61 || ^10.0.2 || ^11.0.2",
75+
"@pact-foundation/pact": "^v10.0.0-beta.61 || ^10.0.2 || ^11.0.2 || ^12.0.0",
7376
"jest": "^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0"
7477
},
7578
"lint-staged": {

0 commit comments

Comments
 (0)