From 48115b94140ad5e2090cef61d7264d3ac9d28792 Mon Sep 17 00:00:00 2001 From: adueck Date: Sun, 9 Oct 2022 11:10:02 +0500 Subject: [PATCH] silent tests --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- netlify.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ab934b..aabb37f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,4 @@ jobs: run: | yarn install-r yarn build-library - yarn test \ No newline at end of file + yarn test -- --silent \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ea73ddf..ee00a8b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: run: | yarn install-r yarn build-library - yarn test + yarn test -- --silent cd lib npm publish cd ../components diff --git a/netlify.toml b/netlify.toml index d7071c8..036e3f7 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,3 @@ [build] - command = "yarn install-r && yarn build-website" + command = "yarn install-r && yarn test -- --silent && yarn build-website" publish = "build/"