From d26172ada8d068aa53ea8970bba31d41acc481a9 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sun, 14 Feb 2021 15:37:12 -0500 Subject: [PATCH] infra: Bump CI to node 14 (#8426) infra: Remove duplicated ES2019 plugin --- .eslintrc.yml | 2 +- .github/workflows/ci.yml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index ae63c5697..7c851c27b 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -1,6 +1,6 @@ extends: - chartjs - - plugin:es/no-2019 + - plugin:es/no-new-in-es2019 env: es6: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d691b398..72b104e2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,8 @@ jobs: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v1 + with: + node-version: '14' - uses: dorny/paths-filter@v2 id: changes with: -- 2.47.2