Skip to content

Commit

Permalink
Use v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Niekes committed Dec 5, 2023
1 parent 37438b5 commit ac9c5b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,7 @@ jobs:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
flags: unittests
name: codecov-umbrella
verbose: true
- uses: codecov/codecov-action@v1
strategy:
matrix:
node:
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"scripts": {
"clean": "rm -rf dist",
"pretest": "npx tsc",
"test": "nyc --reporter=lcov tape tests/**/*.js",
"test": "c8 --check-coverage --100 --reporter lcov tape tests/**/*.js",
"build": "npm run clean && npx tsc && rollup -c",
"watch": "npm run clean && npx tsc --watch",
"release": "npm run clean && npm run build && git push --follow-tags && npm publish"
Expand All @@ -44,7 +44,6 @@
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"c8": "^8.0.1",
"nyc": "^15.1.0",
"rollup": "^4.6.1",
"tape": "^5.7.2",
"typescript": "5.3.2"
Expand Down

0 comments on commit ac9c5b5

Please sign in to comment.