fix: ts_project declaration sources from other directories #1033
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Aspect Workflows | |
on: | |
# Triggers the workflow on pull request events and on main | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Allow this to be triggered manually via the GitHub UI Actions tab | |
workflow_dispatch: | |
concurrency: | |
# Cancel previous actions from the same PR or branch except 'main' branch. | |
# See https://docs.github.com/en/actions/using-jobs/using-concurrency and https://docs.github.com/en/actions/learn-github-actions/contexts for more info. | |
group: concurrency-group::${{ github.workflow }}::${{ github.event.pull_request.number > 0 && format('pr-{0}', github.event.pull_request.number) || github.ref_name }}${{ github.ref_name == 'main' && format('::{0}', github.run_id) || ''}} | |
cancel-in-progress: ${{ github.ref_name != 'main' }} | |
jobs: | |
aspect-workflows: | |
name: Aspect Workflows | |
uses: ./.github/workflows/.aspect-workflows-reusable.yaml | |
with: | |
queue: aspect-nano-graviton |