From f0701dfe62ff9910a66ab89d0505def84bc5b1c9 Mon Sep 17 00:00:00 2001 From: Intizar Date: Fri, 5 Jul 2024 17:05:56 +0900 Subject: [PATCH] increase action timeout and run tests silently --- .github/workflows/cli.test.yaml | 2 +- cli/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli.test.yaml b/.github/workflows/cli.test.yaml index 7730fd790..67689a5a5 100644 --- a/.github/workflows/cli.test.yaml +++ b/.github/workflows/cli.test.yaml @@ -11,7 +11,7 @@ on: jobs: test: runs-on: ubuntu-latest - timeout-minutes: 3 + timeout-minutes: 10 services: postgres: diff --git a/cli/package.json b/cli/package.json index b438d8dc8..8e48fe882 100644 --- a/cli/package.json +++ b/cli/package.json @@ -23,7 +23,7 @@ "build": "yarn clean && tsc", "cli": "node --no-warnings --import=specifier-resolution-node/register --experimental-json-modules dist/index.js", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"", - "test": "node --no-warnings --experimental-vm-modules node_modules/.bin/jest --testPathIgnorePatterns mockData.ts" + "test": "node --no-warnings --experimental-vm-modules node_modules/.bin/jest --testPathIgnorePatterns mockData.ts --silent" }, "bin": { "cli": "dist/index.js"