1
0

Fix lint again

This commit is contained in:
Jai A
2024-10-18 17:33:15 -07:00
parent 25fcee984b
commit 98c050e7e9
2 changed files with 14 additions and 2 deletions

View File

@@ -75,3 +75,6 @@ jobs:
- name: Test
run: pnpm test
env:
SQLX_OFFLINE: true
DATABASE_URL: postgresql://labrinth:labrinth@localhost/postgres

View File

@@ -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
}