From f5417485cf0064a62c4da1f1584771dd366fb73c Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Thu, 10 Feb 2022 12:41:00 -0800 Subject: [PATCH] Drop node@10 from test matrix, add node@16 --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6114ef1..305f5c0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 @@ -23,4 +23,4 @@ jobs: - name: Run tests run: node ./test/validateModuleExportsMatchCommonJS/index.js - if: matrix.node-version == '14.x' + if: matrix.node-version == '16.x'