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', }, };