diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3cc92d9..fe6e7f1 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '22' - name: Install yarn run: npm install -g yarn diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35fad2a..c6aa5fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "22" - name: Install yarn run: npm install -g yarn diff --git a/eslint.config.mjs b/eslint.config.mjs index 4f3797e..84a2ee6 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -4,7 +4,7 @@ import tseslint from 'typescript-eslint'; export default [ { files: ['src/ts/**/*.ts'], - ignores: ['src/ts/mxtypings/**/*.d.ts'], + ignores: ['src/ts/mxtypings/**/*.d.ts', 'dist/**/*.js'], languageOptions: { parser: tseslint.parser, }, @@ -12,15 +12,6 @@ export default [ 'license-header': licenseHeader, }, rules: { - "license-header/header": [ - "error", - [ - "/*---------------------------------------------------------------------------------------------", - " * Copyright (c) Microsoft Corporation. All rights reserved.", - " * Licensed under the Source EULA.See License.txt in the project root for license information.", - " * --------------------------------------------------------------------------------------------*/", - ] - ], "no-var": "error", "prefer-const": "error", "eqeqeq": "error", diff --git a/index.html b/index.html index bc1edcf..a078b39 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,9 @@