Skip to content

Commit

Permalink
ci: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkluijk committed Jan 6, 2025
1 parent 38fd9d0 commit 2b30ce3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,11 @@ jobs:
run: "deno install"

- name: Build step
run: "deno check main.ts"
run: "deno run check"

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "book-store"
entrypoint: "src/app.ts"
root: ""


3 changes: 2 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@dirkluijk/book-store-api",
"exports": "./src/app.ts",
"tasks": {
"dev": "deno serve --unstable-kv src/app.ts"
"dev": "deno serve --unstable-kv src/app.ts",
"check": "deno check **/**.ts"
},
"imports": {
"@hono/swagger-ui": "npm:@hono/swagger-ui@^0.5.0",
Expand Down

0 comments on commit 2b30ce3

Please sign in to comment.