Browse Source
Merge pull request #8031 from abpframework/mehmet-erim-patch-1
Optimized the actions to reduce working time
pull/8047/head
Mehmet Erim
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
19 additions and
9 deletions
-
.github/workflows/angular.yml
-
.github/workflows/build-and-test.yml
|
|
|
@ -2,8 +2,14 @@ name: 'Angular' |
|
|
|
on: |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- 'npm/ng-packs/**' |
|
|
|
- 'npm/ng-packs/**/*.ts' |
|
|
|
- 'npm/ng-packs/**/*.html' |
|
|
|
- 'npm/ng-packs/*.json' |
|
|
|
- '!npm/ng-packs/scripts/**' |
|
|
|
- '!npm/ng-packs/packages/schematics/**' |
|
|
|
branches: |
|
|
|
- 'rel-*' |
|
|
|
- 'dev' |
|
|
|
jobs: |
|
|
|
build-test-lint: |
|
|
|
runs-on: ubuntu-18.04 |
|
|
|
|
|
|
|
@ -2,14 +2,18 @@ name: "build and test" |
|
|
|
on: |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- "framework/**" |
|
|
|
- "modules/**" |
|
|
|
- "templates/**" |
|
|
|
push: |
|
|
|
paths: |
|
|
|
- "framework/**" |
|
|
|
- "modules/**" |
|
|
|
- "templates/**" |
|
|
|
- 'framework/**/*.cs' |
|
|
|
- 'framework/**/*.cshtml' |
|
|
|
- 'framework/**/*.csproj' |
|
|
|
- 'framework/**/*.razor' |
|
|
|
- 'modules/**/*.cs' |
|
|
|
- 'modules/**/*.cshtml' |
|
|
|
- 'modules/**/*.csproj' |
|
|
|
- 'modules/**/*.razor' |
|
|
|
- 'templates/**/*.cs' |
|
|
|
- 'templates/**/*.cshtml' |
|
|
|
- 'templates/**/*.csproj' |
|
|
|
- 'templates/**/*.razor' |
|
|
|
jobs: |
|
|
|
build-test: |
|
|
|
runs-on: windows-latest |
|
|
|
|