We have a monorepo with 3 systems inside it. I want to create a separate build for each of the systems.
How can I trigger a pipeline only when files change in a specific folder?
We are using github
steps:
- label: 'Lint'
command: '.buildkite/scripts/lint.sh'
agents:
node: true
queue: xyz
- label: 'Run Tests'
command: '.buildkite/scripts/tests.sh'
agents:
node: true
queue: xyz