#1049 Remove local UI bundle artifact #6
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: Pull Request | ||
on: [pull_request] | ||
jobs: | ||
prebuild_check_codestyle: | ||
name: Pre-build checks | ||
uses: ./.github/workflows/prebuild/check.codestyle.yml | ||
Check failure on line 7 in .github/workflows/workflow.pull_request.yml GitHub Actions / .github/workflows/workflow.pull_request.ymlInvalid workflow file
|
||
prebuild_check_license: | ||
name: Pre-build checks | ||
uses: ./.github/workflows/prebuild/check.license.yml | ||
prebuild_check_dependency: | ||
name: Pre-build checks | ||
uses: ./.github/workflows/prebuild/check.dependency.yml | ||
build: | ||
name: Build modules | ||
needs: | ||
- prebuild_check_codestyle | ||
- prebuild_check_license | ||
- prebuild_check_dependency | ||
uses: ./.github/workflows/build/build.modules.yml | ||
postbuild_test: | ||
name: Post-build actions | ||
needs: | ||
- build | ||
uses: ./.github/workflows/postbuild/test.coverage.yml | ||
postbuild_documentation: | ||
name: Post-build actions | ||
needs: | ||
- postbuild_test | ||
uses: ./.github/workflows/postbuild/build.docs.yml |