From 2a2a53e0504929a2b6c5062113b78ba23776bfad Mon Sep 17 00:00:00 2001 From: Leonardo Gatica Date: Fri, 11 Feb 2022 12:01:53 -0300 Subject: [PATCH] fix(deps): set peerDependencies semantic-release to >=18.0.0 BREAKING CHANGE: Now min version of semantic-release is 18.0.0 --- .github/workflows/nodejs.yml | 9 ++++++--- package.json | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c0ec95f4..f0a00ad5 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -5,11 +5,14 @@ on: [push] jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + node: ['14.19.0', '16.14.0', '17.4.0'] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14.17.0' + node-version: ${{ matrix.node }} - uses: actions/cache@v2 with: path: ~/.npm @@ -40,7 +43,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14.17.0' + node-version: '17.4.0' - uses: actions/cache@v2 with: path: ~/.npm @@ -71,7 +74,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14.17.0' + node-version: '17.4.0' - uses: actions/cache@v2 with: path: ~/.npm diff --git a/package.json b/package.json index 2bc7063b..46f7a09f 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,6 @@ "typescript": "4.5.4" }, "peerDependencies": { - "semantic-release": ">=11.0.0 <19.0.0" + "semantic-release": ">=18.0.0" } }