From 605e332ff516476e02e2b4abe77395ccac6de597 Mon Sep 17 00:00:00 2001 From: Paul Robert Lloyd Date: Fri, 8 Dec 2023 18:26:58 +0000 Subject: [PATCH] Remove Node 16 from test workflow matrix --- .github/workflows/test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9ffb1743..6d1d7aff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,22 +15,18 @@ jobs: strategy: fail-fast: false matrix: - node: ['16', '18', '20'] + node: ['18', '20'] steps: - name: Checkout code uses: actions/checkout@v4 - - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: 'npm' - - name: Install dependencies run: npm ci - - name: Lint run: npm run lint - - name: Test run: npm test