File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Creator Hub Simple Test
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - main
8+ - experimental
9+ pull_request :
10+
11+ jobs :
12+ test :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v4
17+
18+ - name : Debug
19+ run : |
20+ echo "Creator Hub Simple workflow triggered!"
21+ echo "Event: ${{ github.event_name }}"
22+ echo "Ref: ${{ github.ref }}"
23+ echo "Branch: ${{ github.ref_name }}"
24+ ls -la packages/@dcl/creator-hub/
Original file line number Diff line number Diff line change 11name : Creator Hub CI/CD
22
3- # This workflow handles all Creator Hub related CI/CD processes
43on :
54 workflow_dispatch :
65 push :
Original file line number Diff line number Diff line change 1- name : Manual - Lint & Snapshot update
1+ name : Ready for Review
22
33on :
44 workflow_dispatch :
5- # Also trigger on Creator Hub changes
65 push :
7- paths :
8- - ' packages/@dcl/creator-hub/** '
9- - ' packages/@dcl/inspector/** '
6+ branches :
7+ - main
8+ - experimental
109 pull_request :
11- paths :
12- - ' packages/@dcl/creator-hub/** '
13- - ' packages/@dcl/inspector/** '
10+ release :
11+ types :
12+ - created
1413
1514jobs :
1615 # ============================================================================
@@ -49,11 +48,11 @@ jobs:
4948 commit_message : automatic linter and snapshot tests
5049
5150 # ============================================================================
52- # Creator Hub Lint & Snapshot Update
51+ # Creator Hub Lint
5352 # ============================================================================
5453
5554 creator-hub-lint :
56- name : Creator Hub Lint & Snapshot Update
55+ name : Creator Hub Lint
5756 runs-on : ubuntu-latest
5857 if : |
5958 github.event_name == 'workflow_dispatch' ||
8281 run : npm run lint:fix --if-present
8382 working-directory : packages/@dcl/creator-hub
8483
85- - name : Run Creator Hub tests
86- run : npm run test:main --if-present
87- working-directory : packages/@dcl/creator-hub
88-
8984 - uses : stefanzweifel/git-auto-commit-action@v4
9085 with :
91- commit_message : automatic creator hub linter and tests
86+ commit_message : automatic creator hub linter
You can’t perform that action at this time.
0 commit comments