FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
abp/.github/workflows/angular.yml at dev · abpframework/abp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
abpframework
/
abp
Public
Notifications
You must be signed in to change notification settings
Fork
3.7k
Star
14.4k
Code
Issues
314
Pull requests
19
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
abp
/
.github
/
workflows
/
angular.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
60 lines (51 loc) · 1.52 KB
Breadcrumbs
abp
/
.github
/
workflows
/
angular.yml
Copy path
File metadata and controls
60 lines (51 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name
:
'
Angular
'
on
:
pull_request
:
paths
:
-
'
npm/ng-packs/**/*.ts
'
-
'
npm/ng-packs/**/*.html
'
-
'
npm/ng-packs/*.json
'
-
'
!npm/ng-packs/scripts/**
'
-
'
!npm/ng-packs/packages/schematics/**
'
branches
:
-
'
rel-*
'
-
'
dev
'
types
:
-
opened
-
synchronize
-
reopened
-
ready_for_review
concurrency
:
group
:
${{ github.workflow }}-${{ github.ref }}
cancel-in-progress
:
true
permissions
:
contents
:
read
jobs
:
build-test-lint
:
if
:
${{ !github.event.pull_request.draft }}
runs-on
:
ubuntu-latest
timeout-minutes
:
30
steps
:
-
uses
:
actions/checkout@v4
with
:
fetch-depth
:
0
-
uses
:
actions/cache@v4
with
:
path
:
'
npm/ng-packs/node_modules
'
key
:
${{ runner.os }}-${{ hashFiles('npm/ng-packs/yarn.lock') }}
-
uses
:
actions/cache@v4
with
:
path
:
'
templates/app/angular/node_modules
'
key
:
${{ runner.os }}-${{ hashFiles('templates/app/angular/yarn.lock') }}
-
name
:
Install packages
run
:
yarn install
working-directory
:
npm/ng-packs
-
name
:
Run lint
run
:
yarn affected:lint --base=remotes/origin/${{ github.base_ref }}
working-directory
:
npm/ng-packs
-
name
:
Run build
run
:
yarn affected:build --base=remotes/origin/${{ github.base_ref }}
working-directory
:
npm/ng-packs
-
name
:
Run test
run
:
yarn affected:test --base=remotes/origin/${{ github.base_ref }}
working-directory
:
npm/ng-packs
Back
|
FazBrowse Home
|
New Git URL