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/"