From 58e7363fdb9e6201e6a4615ef003a497a0101f9b Mon Sep 17 00:00:00 2001 From: Nate Goldman Date: Sun, 13 Mar 2022 17:57:04 -0700 Subject: [PATCH] ci: drop support for non-LTS node versions --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1c3ac0f..f2b36c2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node: [8, 10, lts/*] + node: [lts/*] steps: - - uses: actions/checkout@v2.4.0 - - uses: actions/setup-node@v2.5.0 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - run: npm i