From 10aff698e94b5350ee5e8dafd28fa615b9bf6901 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Mon, 1 Apr 2024 12:05:57 +0800 Subject: [PATCH] Update test.yml to only use Node.js v20 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 15faf5f..6dffad8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: name: 'Tests (Node ${{ matrix.node_version }})' strategy: matrix: - node_version: [16, 18] + node_version: [20] runs-on: 'ubuntu-22.04' steps: - name: 'Checkout the current branch' @@ -20,4 +20,4 @@ jobs: - name: 'Install Node modules' run: 'npm ci' - name: 'Run tests' - run: 'npm run test' \ No newline at end of file + run: 'npm run test'