mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
# These file filter patterns are used by the action https://github.com/dorny/paths-filter
|
|
|
|
backend: &backend
|
|
- '.github/workflows/test-backend.yml'
|
|
- 'backend/**/*'
|
|
- 'neo4j/**/*'
|
|
- 'package.json'
|
|
|
|
docker: &docker
|
|
- 'docker-compose.*'
|
|
|
|
webapp: &webapp
|
|
- '.github/workflows/test-webapp.yml'
|
|
- 'webapp/**/*'
|
|
- 'package.json'
|
|
|
|
docs-check: &docs-check
|
|
- '.github/workflows/check-documentation.yml'
|
|
|
|
markdown: &markdown
|
|
- *docs-check
|
|
- '**/*.md'
|
|
- '.github/workflows/mlc_config.json'
|
|
|
|
vuepress: &vuepress
|
|
- *docs-check
|
|
- '.github/workflows/deploy-documentation.yml'
|
|
- '.vuepress/**/*'
|
|
- 'package.json'
|
|
|
|
documentation: &documentation
|
|
- *vuepress
|
|
- *markdown
|
|
|
|
# frontend
|
|
frontend-test-lint-code: &frontend-test-lint-code
|
|
- 'frontend/**/*'
|
|
|
|
frontend-test-unit-code: &frontend-test-unit-code
|
|
- 'frontend/**/*'
|
|
|
|
frontend-test-build-code: &frontend-test-build-code
|
|
- 'frontend/**/*'
|
|
|
|
frontend-test-build-docker: &frontend-test-build-docker
|
|
- 'frontend/**/*'
|
|
|
|
frontend-test-build-docs: &frontend-test-build-docs
|
|
- 'frontend/**/*.md'
|
|
- 'frontend/.vuepress/*'
|
|
|
|
frontend-test-build-storybook: &frontend-test-build-storybook
|
|
- 'frontend/**/*' |