diff --git a/.gitignore b/.gitignore index 2c0f99430f95f9b119373fadc6850f983f242d93..e9abaf196c68b2443d18e40cfe2165c1eafd6407 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ node_modules .next .next/ tsconfig.tsbuildinfo +package-lock.json # testing /coverage diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c52d89f0723abfac87cc339d56df2b15121ff68..e7abb32721972952ef80d6260c93b147d4373758 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ lint:commit: allow_failure: true before_script: - apk add --no-cache npm - - npm ci + - npm install script: - echo "${CI_COMMIT_MESSAGE}" | npx commitlint @@ -22,7 +22,7 @@ linter: stage: lint before_script: - apk add --no-cache npm - - npm ci + - npm install script: - npm run lint:ts only: @@ -35,7 +35,7 @@ prettier: stage: prettier before_script: - apk add --no-cache npm - - npm ci + - npm install script: - npm run prettier:ci only: @@ -49,7 +49,7 @@ jest: coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/ before_script: - apk add --no-cache npm - - npm ci + - npm install script: - npm run test:ci only: