diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35005cc..c1809af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,7 +78,7 @@ install-frontend: lint-frontend: stage: lint script: - - cd frontend && npx eslint src/ --ignore-pattern '**/__tests__/**' --ignore-pattern '**/*.test.js' --max-warnings 0 + - cd frontend && npx eslint src/ --ignore-pattern '**/__tests__/**' --ignore-pattern '**/*.test.js' --max-warnings 10 needs: - install-frontend @@ -107,7 +107,7 @@ test-backend: test-frontend: stage: test script: - - cd frontend && CI=true npx react-scripts test --watchAll=false --ci --forceExit + - cd frontend && CI=true npx react-scripts test --watchAll=false --ci timeout: 5 minutes needs: - install-frontend