From 2c23355b26e55bb52581b7635cc353be2d4e8182 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 30 Jun 2022 12:50:19 +0200 Subject: [PATCH 1/3] README.md: Encourage testing on current Node.js In alignment with https://nodejs.org/en/about/releases --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3b9ea0a0c..e8b19774b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - run: npm ci - run: npm test ``` @@ -39,8 +39,8 @@ The `node-version` input supports the Semantic Versioning Specification, for mor Examples: - - Major versions: `12`, `14`, `16` - - More specific versions: `10.15`, `14.2.0`, `16.3.0` + - Major versions: `14`, `16`, `18` + - More specific versions: `10.15`, `16.15.1` , `18.4.0` - NVM LTS syntax: `lts/erbium`, `lts/fermium`, `lts/*`, `lts/-n` - Latest release: `*` or `latest`/`current`/`node` @@ -71,7 +71,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 cache: 'npm' - run: npm ci - run: npm test @@ -84,7 +84,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 cache: 'npm' cache-dependency-path: subdir/package-lock.json - run: npm ci @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 12, 14, 16 ] + node: [ 14, 16, 18 ] name: Node ${{ matrix.node }} sample steps: - uses: actions/checkout@v3 From 77474171793db7d1a68dc8884f333af40e9f5bfb Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 5 Jul 2022 18:41:51 +0200 Subject: [PATCH 2/3] Node.js 16 Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8b19774b..befd9b28a 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 16 cache: 'npm' - run: npm ci - run: npm test From 6d71d13856a5c6b1cfea20dd0c3769112d204349 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 5 Jul 2022 18:43:19 +0200 Subject: [PATCH 3/3] Node.js 16 Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index befd9b28a..30c2c02c1 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 16 cache: 'npm' cache-dependency-path: subdir/package-lock.json - run: npm ci