From 11f222c6e33f64f7fbaa0d958baf21b5c2a3501a Mon Sep 17 00:00:00 2001 From: Pavel Pustovalov Date: Tue, 18 Aug 2020 03:08:17 +0300 Subject: [PATCH] Run ui specs on CI --- .github/workflows/ci-test-frontend.yml | 3 +++ frontend/.huskyrc.js | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-test-frontend.yml b/.github/workflows/ci-test-frontend.yml index 88b2c8f0..3e4d3e48 100644 --- a/.github/workflows/ci-test-frontend.yml +++ b/.github/workflows/ci-test-frontend.yml @@ -26,3 +26,6 @@ jobs: - run: npx run-p check lint working-directory: ./frontend + + - run: npm run test + working-directory: ./frontend diff --git a/frontend/.huskyrc.js b/frontend/.huskyrc.js index 2a0b0c18..a726cc28 100644 --- a/frontend/.huskyrc.js +++ b/frontend/.huskyrc.js @@ -2,6 +2,5 @@ module.exports = { hooks: { 'pre-commit': 'lint-staged', 'post-commit': 'git update-index --again', - 'pre-push': 'run-s check test', }, };