From 34f4f5cd58a9dc09d45f11f57705760dd1e7f984 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sun, 11 Jul 2021 12:53:46 -0400 Subject: [PATCH] remove testing for node 10 as node 10 is no longer officially supported by node not causing a version jump as this is just removing auto test, we are making no functional changes nor any code changes at this time. --- .github/workflows/test-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 37343794..6e70497f 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x, 16.x] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v1