FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
generator-angular-fullstack/circle.yml at master · angular-fullstack/generator-angular-fullstack · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jul 29, 2026. It is now read-only.
angular-fullstack
/
generator-angular-fullstack
Public archive
Notifications
You must be signed in to change notification settings
Fork
1.2k
Star
6.1k
Code
Issues
243
Pull requests
14
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
generator-angular-fullstack
/
circle.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
56 lines (48 loc) · 1.77 KB
Breadcrumbs
generator-angular-fullstack
/
circle.yml
Copy path
File metadata and controls
56 lines (48 loc) · 1.77 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
version
:
2
jobs
:
build
:
docker
:
-
image
:
circleci/node:12-browsers
-
image
:
mongo
command
:
mongod
working_directory
:
~/generator-angular-fullstack
environment
:
NODE_ENV
:
test
branches
:
ignore
:
-
gh-pages
steps
:
-
checkout
-
run
:
git submodule sync && git submodule update --init
#
Generator npm dependencies
-
restore_cache
:
keys
:
-
generator-angular-fullstack-npm-{{ .Branch }}-{{ checksum "package.json" }}
-
generator-angular-fullstack-npm-{{ .Branch }}
-
generator-angular-fullstack-npm-
-
run
:
npm install --quiet
-
save_cache
:
key
:
generator-angular-fullstack-npm-{{ .Branch }}-{{ checksum "package.json" }}
paths
:
-
~/generator-angular-fullstack/node_modules
#
Test fixtures
-
run
:
npx gulp updateFixtures:test
-
restore_cache
:
keys
:
-
generator-angular-fullstack-npm-fixtures-{{ .Branch }}-{{ checksum "templates/app/_package.json" }}
-
generator-angular-fullstack-npm-fixtures-{{ .Branch }}
-
generator-angular-fullstack-npm-fixtures-
-
run
:
npx gulp installFixtures
-
save_cache
:
key
:
generator-angular-fullstack-npm-fixtures-{{ .Branch }}-{{ checksum "templates/app/_package.json" }}
paths
:
-
~/generator-angular-fullstack/test/fixtures/node_modules
-
run
:
npx gulp build
-
run
:
npm test
#
- deploy:
#
command: |
#
if [ "${CIRCLE_BRANCH}" == "master" ]; then
#
git config --global user.email "circleci@circleci.com"
#
git config --global user.name "CircleCI"
#
cd docs && npm install && npm run build && npm run deploy
#
fi
Back
|
FazBrowse Home
|
New Git URL