Skip to content

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed #54

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed #54

Workflow file for this run

name: Pull Request CI
on:
pull_request:
branches:
- "**"
jobs:
determine-changes:
uses: ./.github/workflows/determineChanges.yaml
lint-changed-files:
needs: determine-changes
uses: ./.github/workflows/lintChangedFiles.yaml
with:
changed-files-data: ${{ needs.determine-changes.outputs.changed-files-data }}
test-changed-files:
needs: determine-changes
uses: ./.github/workflows/testChangedFiles.yaml
with:
changed-files-data: ${{ needs.determine-changes.outputs.changed-files-data }}