Introduce websocket to fix the bug that project config not sync with the server #95
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: 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 |