Skip to content
Snippets Groups Projects
Commit 0d56653e authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

always run all checks on pipeline, re #1612

Merge request studip/studip!1035
parent 0740fcd4
No related branches found
No related tags found
No related merge requests found
...@@ -65,16 +65,6 @@ stages: ...@@ -65,16 +65,6 @@ stages:
- .caches/eslint-cache - .caches/eslint-cache
- .caches/stylelint-cache - .caches/stylelint-cache
.only:
php-changes: &php-changes
changes:
- composer.json
- app/controllers/**/*controller.php
- db/**/*
- lib/**/*
- tests/**/*
- vendor/**/*
lint-php: lint-php:
stage: checks stage: checks
needs: [] needs: []
...@@ -103,10 +93,6 @@ lint-js: ...@@ -103,10 +93,6 @@ lint-js:
- make npm - make npm
script: script:
- npm run lint -- --cache --cache-location .caches/eslint-cache --format ./node_modules/eslint-junit/index.js - npm run lint -- --cache --cache-location .caches/eslint-cache --format ./node_modules/eslint-junit/index.js
only:
changes:
- resources/assets/javascripts/**/*
- resources/vue/**/*
artifacts: artifacts:
<<: *common-artifacts <<: *common-artifacts
paths: paths:
...@@ -124,9 +110,6 @@ lint-css: ...@@ -124,9 +110,6 @@ lint-css:
- make npm - make npm
script: script:
- npm run css-lint -s -- --cache --cache-location .caches/stylelint-cache --custom-formatter node_modules/stylelint-junit-formatter --output-file .reports/stylelint-report.xml - npm run css-lint -s -- --cache --cache-location .caches/stylelint-cache --custom-formatter node_modules/stylelint-junit-formatter --output-file .reports/stylelint-report.xml
only:
changes:
- resources/assets/stylesheets/**/*
artifacts: artifacts:
<<: *common-artifacts <<: *common-artifacts
paths: paths:
...@@ -157,7 +140,6 @@ phpstan: ...@@ -157,7 +140,6 @@ phpstan:
test-unit: test-unit:
stage: tests stage: tests
needs: [lint-php] needs: [lint-php]
only: *php-changes
cache: cache:
<<: *composer-cache <<: *composer-cache
policy: pull policy: pull
...@@ -174,7 +156,6 @@ test-unit: ...@@ -174,7 +156,6 @@ test-unit:
test-functional: test-functional:
stage: tests stage: tests
needs: [lint-php] needs: [lint-php]
only: *php-changes
cache: cache:
<<: *composer-cache <<: *composer-cache
policy: pull policy: pull
...@@ -193,7 +174,6 @@ test-functional: ...@@ -193,7 +174,6 @@ test-functional:
test-jsonapi: test-jsonapi:
stage: tests stage: tests
needs: [lint-php] needs: [lint-php]
only: *php-changes
cache: cache:
<<: *composer-cache <<: *composer-cache
policy: pull policy: pull
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment