From 981dc979b882450e08dcf1581e01493bae508437 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Wed, 13 Jul 2022 14:24:33 +0200 Subject: [PATCH] chore: fix tests webpack 4 is and will not be compatible to node 17 and up by default So netlify-lambda does not support node 17 or up --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d62183ce..f9a2877d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,13 +15,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - node-version: [10.x, '*'] - exclude: + os: [ubuntu-latest] + node-version: [10, 12, 14, 16] + include: - os: macOS-latest - node-version: 10.x + node-version: 16 - os: windows-latest - node-version: 10.x + node-version: 16 fail-fast: false steps: - uses: actions/checkout@v3