From 0defda30c169030e04aab6f31243f6e1ecd798ae Mon Sep 17 00:00:00 2001 From: leibale Date: Wed, 12 May 2021 19:35:07 -0400 Subject: [PATCH] run tests with node 16.x & redis 6.x only (for now) --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e88238daed..6f66ab7377 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,8 +12,8 @@ jobs: strategy: fail-fast: false matrix: - node-version: [12.x, 14.x, 15.x] - redis-version: [4.x, 5.x, 6.x] + node-version: [16.x] + redis-version: [6.x] steps: - uses: actions/checkout@v2.3.4