From 093e365df746efe86fb6114b155ff9db52a485c4 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 8 Feb 2021 07:24:35 +0000 Subject: [PATCH] style(scripts): rename `jest-coverage` to `jest:coverage` --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04642ce..85d4c25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: sudo apt-get -y install unrtf - name: Run Tests - run: npm run jest-coverage + run: npm run jest:coverage - name: Coveralls Parallel uses: coverallsapp/github-action@v1.1.2 with: diff --git a/package.json b/package.json index c76a411..fbf7f5f 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "changelog": "conventional-changelog -p @commitlint/config-conventional -s -i CHANGELOG.md && prettier CHANGELOG.md --write", "doc": "tsc && jsdoc2md src/index.js > API.md && prettier API.md --write", "jest": "jest --detectOpenHandles --runInBand", - "jest-coverage": "jest --coverage --runInBand", + "jest:coverage": "jest --coverage --runInBand", "lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore", "lint:prettier": "prettier . --write --ignore-path .gitignore", "lint:prettier:ci": "prettier . --check --ignore-path .gitignore",