Skip to content

Commit df96b20

Browse files
authored
Remove Node v12 support, add Node v16 build (#369)
1 parent c2500d8 commit df96b20

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: ["12", "14", "16"]
12+
node: [14.x, 16.x, 18.x]
1313
name: Node v${{ matrix.node }}
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v1
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
1717
with:
1818
node-version: ${{ matrix.node }}
1919
- run: sudo apt-get install -y redis-server

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"redis-v4": "npm:redis@4"
2626
},
2727
"engines": {
28-
"node": ">=12"
28+
"node": ">=14"
2929
},
3030
"bugs": {
3131
"url": "https://github.com/tj/connect-redis/issues"

0 commit comments

Comments
 (0)