From 08a92c3b9ad76a10983ced40f56769bf3527c5ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Beltr=C3=A1n=20Alarc=C3=B3n?= Date: Fri, 23 Dec 2022 18:18:01 +0100 Subject: [PATCH 1/2] feat: add support for Node v19 --- .github/workflows/pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 35932ecf..0d3a6fcf 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -54,7 +54,8 @@ jobs: strategy: matrix: - node: [12.22.0, 12, 14.17.0, 14, '16.0', 16, '18.0', 18] + # The .x indicates "the most recent one" + node: [19.x, 18.x, 17.x, 16.x, 14.x, '14.17.0', 12.x, '12.22.0'] eslint: [7.5, 7, 8] steps: From be354548ff78d6b069e8d49204b3a54dba6e318a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Beltr=C3=A1n=20Alarc=C3=B3n?= Date: Fri, 23 Dec 2022 19:53:15 +0100 Subject: [PATCH 2/2] ci: remove unnecessary string quotes --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0d3a6fcf..305c27e7 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -55,7 +55,7 @@ jobs: strategy: matrix: # The .x indicates "the most recent one" - node: [19.x, 18.x, 17.x, 16.x, 14.x, '14.17.0', 12.x, '12.22.0'] + node: [19.x, 18.x, 17.x, 16.x, 14.x, 14.17.0, 12.x, 12.22.0] eslint: [7.5, 7, 8] steps: