From 8447f4c90f5272d182144d49b410b1b220b4f488 Mon Sep 17 00:00:00 2001 From: ppetzold Date: Tue, 12 Oct 2021 13:06:20 +0200 Subject: [PATCH] rename format ci script --- .github/workflows/main.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5e5f36a..bc157e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm ci - - run: npm run format:check + - run: npm run format:ci - run: npm run lint - run: npm run build - run: npm run test:cov diff --git a/package.json b/package.json index a47db2e..ae2738f 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "prebuild": "rimraf lib", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", - "format:check": "prettier --list-different \"src/**/*.ts\"", + "format:ci": "prettier --list-different \"src/**/*.ts\"", "lint": "eslint -c .eslintrc.json --ext .ts --max-warnings 0 src", "test": "jest", "test:watch": "jest --watch",