From 3046b1b2892c60c6264b6551d652a9e78d881896 Mon Sep 17 00:00:00 2001 From: Philipp Winterle Date: Sun, 5 Dec 2021 12:35:44 +0100 Subject: [PATCH] BUG: changes parser type for eslint to script until we switch to module FIX: removed nodejs 15 from github workflow test due to no usage anymore over 16 LTS or 17 --- .eslintrc.json | 2 +- .github/workflows/node.js.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 80bfabb..3682280 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,7 +7,7 @@ "parser": "@babel/eslint-parser", "parserOptions": { "ecmaVersion": 12, - "sourceType": "module" + "sourceType": "script" }, "plugins": ["@babel"], "rules": { diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4501890..4231f0d 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 15.x] + node-version: [12.x, 14.x, 16.x, 17.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: