From 12a20446446100cec7a35fdd8b86868221aa75e5 Mon Sep 17 00:00:00 2001 From: patrickniyogitare28 Date: Fri, 25 Mar 2022 20:31:12 +0200 Subject: [PATCH] chore(pipeline): renamed tests cicd file --- .github/workflows/{ci-cd.yml => tests-cicd.yml} | 0 package.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{ci-cd.yml => tests-cicd.yml} (100%) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/tests-cicd.yml similarity index 100% rename from .github/workflows/ci-cd.yml rename to .github/workflows/tests-cicd.yml diff --git a/package.json b/package.json index 127f012..4fcbc90 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "A nodejs service consuming the Stackoverflow API", "main": "index.js", "scripts": { - "test": "nyc mocha --config ./mocharc.jsonc", - "start": "node ./dist", + "test": "mocha --config ./mocharc.jsonc", + "start": "node ./dist", "start:dev": "nodemon ./src/index.ts", "build": "npm run clean && tsc -p tsconfig-build.json", "prestart": "npm run build",