Skip to content

Commit

Permalink
ci: enables CI in the v4 branch (#1933)
Browse files Browse the repository at this point in the history
* ci: enables CI in the v4 branch

* fixed the errors
  • Loading branch information
yusukebe committed Jan 9, 2024
1 parent e532183 commit f259dd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ci
on:
push:
branches: [main, next]
branches: [main, next, v4]
pull_request:
branches: ['*']

Expand Down
2 changes: 1 addition & 1 deletion deno_dist/hono-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Hono<
if (typeof arg1 === 'string') {
this.#path = arg1
} else {
this.path = '*'
this.#path = '*'
handlers.unshift(arg1)
}
handlers.map((handler) => {
Expand Down
2 changes: 1 addition & 1 deletion src/hono-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Hono<
if (typeof arg1 === 'string') {
this.#path = arg1
} else {
this.path = '*'
this.#path = '*'
handlers.unshift(arg1)
}
handlers.map((handler) => {
Expand Down

0 comments on commit f259dd2

Please sign in to comment.