Skip to content

Commit 519d2ba

Browse files
authored
Chore: remove codecov workflow (#262)
1 parent 4ddeeef commit 519d2ba

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed

.github/workflows/CI.yml

-25
Original file line numberDiff line numberDiff line change
@@ -83,28 +83,3 @@ jobs:
8383
run: node scripts/ci-install-eslint ${{ matrix.eslint }}
8484
- name: Test
8585
run: npm run -s test:debug
86-
87-
test-cov:
88-
name: Test and Send Coverage
89-
runs-on: ubuntu-latest
90-
steps:
91-
- name: Checkout
92-
uses: actions/checkout@v4
93-
- name: Checkout submodules
94-
run: git submodule update --init
95-
- name: Install Node.js
96-
uses: actions/setup-node@v4
97-
with:
98-
node-version: 'lts/*'
99-
- name: Install Packages
100-
run: npm install
101-
- name: Install ESLint v9
102-
run: node scripts/ci-install-eslint 9
103-
- name: Build
104-
run: npm run -s build
105-
- name: Test
106-
run: npm run -s test:cover
107-
- name: Send Coverage
108-
run: npm run -s codecov
109-
env:
110-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![npm version](https://img.shields.io/npm/v/vue-eslint-parser.svg)](https://www.npmjs.com/package/vue-eslint-parser)
44
[![Downloads/month](https://img.shields.io/npm/dm/vue-eslint-parser.svg)](http://www.npmtrends.com/vue-eslint-parser)
55
[![Build Status](https://github.com/vuejs/vue-eslint-parser/workflows/CI/badge.svg)](https://github.com/vuejs/vue-eslint-parser/actions)
6-
[![Coverage Status](https://codecov.io/gh/vuejs/vue-eslint-parser/branch/master/graph/badge.svg)](https://codecov.io/gh/vuejs/vue-eslint-parser)
76

87
The ESLint custom parser for `.vue` files.
98

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"@typescript-eslint/eslint-plugin": "^8.22.0",
3939
"@typescript-eslint/parser": "^8.22.0",
4040
"chokidar": "^3.5.2",
41-
"codecov": "^3.8.3",
4241
"cross-spawn": "^7.0.3",
4342
"dts-bundle": "^0.7.3",
4443
"eslint": "^9.19.0",
@@ -69,7 +68,6 @@
6968
"prebuild": "npm run -s clean",
7069
"build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
7170
"clean": "rimraf .nyc_output .temp coverage index.*",
72-
"codecov": "codecov",
7371
"coverage": "opener ./coverage/lcov-report/index.html",
7472
"lint": "eslint src test package.json",
7573
"pretest": "run-s build lint",

0 commit comments

Comments
 (0)