Skip to content

Commit

Permalink
chore: set up commitlint and changelog
Browse files Browse the repository at this point in the history
- Uso de conventional commit con commitlint, conventional-changelog y husky.
- Refactor de algunos scripts
  • Loading branch information
Yizack committed May 5, 2023
1 parent b323c9f commit ea5779c
Show file tree
Hide file tree
Showing 5 changed files with 1,088 additions and 14 deletions.
27 changes: 27 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"subject-empty": [2, "never"],
"type-enum": [
2,
"always",
[
"oops",
"build",
"chore",
"ci",
"deploy",
"docs",
"e2e",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"upgrade"
]
]
}
}
6 changes: 3 additions & 3 deletions .github/workflows/bundle-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: npm ci

- name: MiBus Rutas 🚌
run: npm run mibus
run: npm run app:mibus

- name: Build App ⚡
run: npm run generate
Expand All @@ -39,14 +39,14 @@ jobs:
folder: .output/public

- name: Clean output 🧹
run: npm run clean
run: npm run app:clean

- name: Capacitor 📲
run: npm run sync

- name: Version App 🔢
run: |
npm run versionApp
npm run app:version
npm run trapeze
- name: Setup java ☕
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ release/
.idea
.gradle
assets/rutas.json
.husky
Loading

0 comments on commit ea5779c

Please sign in to comment.