remove the limitation of project root when adding new projects (#47) #92
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: Webinizer CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "documentation/**" | |
- "README.md" | |
- "CODE_OF_CONDUCT.md" | |
- "CONTRIBUTING.md" | |
- "LICENSE" | |
- "security.md" | |
- "SUPPORT.md" | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
paths-ignore: | |
- "documentation/**" | |
- "README.md" | |
- "CODE_OF_CONDUCT.md" | |
- "CONTRIBUTING.md" | |
- "LICENSE" | |
- "security.md" | |
- "SUPPORT.md" | |
# allow to be triggered manually | |
workflow_dispatch: | |
# Cancel any in-flight jobs for the same PR/branch so there's only one active | |
# at a time | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run_unit_tests: | |
uses: intel/webinizer/.github/workflows/shared_workflow.yml@main | |
with: | |
taskType: unit-test | |
linting_check: | |
uses: intel/webinizer/.github/workflows/shared_workflow.yml@main | |
with: | |
taskType: linting-check |