Skip to content

Commit

Permalink
Fix lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically committed Oct 19, 2024
1 parent 25fcee9 commit 98c050e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/turbo-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,6 @@ jobs:

- name: Test
run: pnpm test
env:
SQLX_OFFLINE: true
DATABASE_URL: postgresql://labrinth:labrinth@localhost/postgres
13 changes: 11 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,23 @@
"SQLX_OFFLINE"
]
},
"lint": {},
"lint": {
"env": [
"SQLX_OFFLINE"
]
},
"dev": {
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": ["DISPLAY", "WEBKIT_DISABLE_DMABUF_RENDERER"]
},
"test": {},
"test": {
"env": [
"SQLX_OFFLINE",
"DATABASE_URL"
]
},
"fix": {
"cache": false
}
Expand Down

0 comments on commit 98c050e

Please sign in to comment.