diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cdd408e3..e1d1e9de 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -83,28 +83,3 @@ jobs: run: node scripts/ci-install-eslint ${{ matrix.eslint }} - name: Test run: npm run -s test:debug - - test-cov: - name: Test and Send Coverage - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Checkout submodules - run: git submodule update --init - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 'lts/*' - - name: Install Packages - run: npm install - - name: Install ESLint v9 - run: node scripts/ci-install-eslint 9 - - name: Build - run: npm run -s build - - name: Test - run: npm run -s test:cover - - name: Send Coverage - run: npm run -s codecov - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/README.md b/README.md index b4d1a580..57e0668f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![npm version](https://img.shields.io/npm/v/vue-eslint-parser.svg)](https://www.npmjs.com/package/vue-eslint-parser) [![Downloads/month](https://img.shields.io/npm/dm/vue-eslint-parser.svg)](http://www.npmtrends.com/vue-eslint-parser) [![Build Status](https://github.com/vuejs/vue-eslint-parser/workflows/CI/badge.svg)](https://github.com/vuejs/vue-eslint-parser/actions) -[![Coverage Status](https://codecov.io/gh/vuejs/vue-eslint-parser/branch/master/graph/badge.svg)](https://codecov.io/gh/vuejs/vue-eslint-parser) The ESLint custom parser for `.vue` files. @@ -260,6 +259,7 @@ See [implementing-custom-template-tokenizers.md](./docs/implementing-custom-temp - `defineDocumentVisitor(documentVisitor, options)` ... returns ESLint visitor to traverses the document. - [ast.md](./docs/ast.md) is `