From 538379887589632b664016a6d06d720121a29d8f Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Mon, 8 Feb 2021 07:24:17 +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 8f4fa7c8..800a48e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: if: matrix.os == 'ubuntu-20.04' run: sudo apt-get -y install poppler-data poppler-utils - 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 e6033f86..8aac9e19 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,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 . --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",