From 3e65a3080cf5641212c682ec29993eaeb44d646a Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Fri, 10 Jan 2025 20:31:24 -0500 Subject: [PATCH] Update tests.yml to use the latest LTS version of Node.js --- .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 ed126ad3..23ab0565 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,17 +1,17 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: build and tests +name: build and test on: [push] jobs: - build: + build-and-test: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [lts/*] steps: - uses: actions/checkout@v2