From 20f527eb800696030040f780328b345322d10b0a Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Tue, 20 Apr 2021 11:29:20 +0200 Subject: [PATCH] GithubWorkflow: Removed build on Node 10 This is not helpful anymore, because node 10 is nearly at the end of its LTS and because ts-loader 9 has node 12 as it minimum supported version and this is a key part of this application. Signed-off-by: Philip Molares --- .github/workflows/nest.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nest.js.yml b/.github/workflows/nest.js.yml index 1147405fa..f43b793ec 100644 --- a/.github/workflows/nest.js.yml +++ b/.github/workflows/nest.js.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 10.x, 12.x, 14.x, 15.x ] + node-version: [12.x, 14.x, 15.x ] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}