Skip to content

Commit 9129cf9

Browse files
committed
chore: add git workflow
1 parent f5f72d5 commit 9129cf9

12 files changed

Lines changed: 89263 additions & 9 deletions

File tree

.github/workflows/zip.yml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: create-starter-zip
2+
run-name: Creating Starter Zip
3+
on: [push]
4+
jobs:
5+
check-bats-version:
6+
if: startsWith(github.ref, 'refs/tags/')
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: "18"
13+
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
ref: lab00-ess-starter
18+
- run: npm install --force
19+
- name: Zip Folder
20+
run: zip -r ess-starter.zip . -x "*.zip"
21+
22+
- name: Release
23+
uses: softprops/action-gh-release@v1
24+
with:
25+
files: "*.zip"
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
29+
- uses: actions/checkout@v2
30+
with:
31+
fetch-depth: 0
32+
ref: lab250-reactive-starter
33+
- run: npm install --force
34+
- name: Zip Folder
35+
run: zip -r rea-starter.zip . -x "*.zip"
36+
37+
- name: Release
38+
uses: softprops/action-gh-release@v1
39+
with:
40+
files: "*.zip"
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
44+
- uses: actions/checkout@v2
45+
with:
46+
fetch-depth: 0
47+
ref: lab300-deep-dive-starter
48+
- run: npm install --force
49+
- name: Zip Folder
50+
run: zip -r ddv-starter.zip . -x "*.zip"
51+
52+
- name: Release
53+
uses: softprops/action-gh-release@v1
54+
with:
55+
files: "*.zip"
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
59+
- uses: actions/checkout@v2
60+
with:
61+
fetch-depth: 0
62+
ref: lab400-enterprise-starter
63+
- run: npm install --force
64+
- name: Zip Folder
65+
run: zip -r ent-cli-starter.zip . -x "*.zip"
66+
67+
- name: Release
68+
uses: softprops/action-gh-release@v1
69+
with:
70+
files: "*.zip"
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
74+
- uses: actions/checkout@v2
75+
with:
76+
fetch-depth: 0
77+
ref: lab200-enterprise-starter
78+
- run: npm install --force
79+
- name: Zip Folder
80+
run: zip -r ent-starter.zip . -x "*.zip"
81+
82+
- name: Release
83+
uses: softprops/action-gh-release@v1
84+
with:
85+
files: "*.zip"
86+
env:
87+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
88+
89+
- uses: actions/checkout@v2
90+
with:
91+
fetch-depth: 0
92+
ref: lab500-enterprise-starter
93+
- run: npm install --force
94+
- name: Zip Folder
95+
run: zip -r ent-nx-sheriff-starter.zip . -x "*.zip"
96+
97+
- name: Release
98+
uses: softprops/action-gh-release@v1
99+
with:
100+
files: "*.zip"
101+
env:
102+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.nx/cache/run.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"run": {
3+
"command": "nx serve -o",
4+
"startTime": "2025-12-08T19:57:38.975Z",
5+
"endTime": "2025-12-08T19:57:45.879Z",
6+
"inner": false
7+
},
8+
"tasks": []
9+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[?25l◼ Building...
2+
⠋ Building...
3+
⠙ Building...
4+
⠹ Building...
5+
⠸ Building...
6+
⠼ Building...
7+
⠴ Building...
8+
⠦ Building...
9+
⠧ Building...
10+
⠇ Building...
11+
⠏ Building...
12+
⠋ Building...
13+
⠙ Building...
14+
✔ Building...
15+
[?25hInitial chunk files | Names  |  Raw size
16+
styles.css  | styles  | 116.61 kB | 
17+
main.js  | main  |  18.24 kB | 
18+
chunk-USY2CGNK.js  | -  |  1.54 kB | 
19+
chunk-SG2LYVAH.js  | -  | 894 bytes | 
20+
polyfills.js  | polyfills  |  95 bytes | 
21+

22+
   | Initial total | 137.39 kB
23+

24+
Lazy chunk files  | Names  |  Raw size
25+
lib-SVKPLHLN.js  | index  |  59.07 kB | 
26+
lib-M4WAWNIO.js  | index  |  8.94 kB | 
27+

28+
Application bundle generation complete. [1.219 seconds] - 2025-12-08T19:57:41.460Z
29+

30+
Watch mode enabled. Watching for file changes...
31+
NOTE: Raw file sizes do not reflect development server per-request transformations.
32+
➜ Local: http://localhost:4200/
33+
 ➜ press h + enter to show help
34+
^C
48 KB
Binary file not shown.

0 commit comments

Comments
 (0)