1
0
mirror of https://github.com/barthuijgen/factorio-sites.git synced 2024-11-20 18:15:37 +02:00

fix: prisma not starting

This commit is contained in:
Bart 2022-11-22 16:26:11 +01:00
parent f8069e2a0e
commit 09eab3db72
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ jobs:
with:
node-version: 18
cache: "yarn"
- run: yarn --prefer-offline
- run: yarn
- run: yarn nx build blueprints
env:
CF_WEB_ANALYTICS: 6c563c1e5db141129a5fc95d5c459722

View File

@ -15,7 +15,7 @@ jobs:
with:
node-version: 18
cache: "yarn"
- run: yarn --prefer-offline
- run: yarn
- run: yarn nx build blueprints
env:
PUBLIC_URL: https://factorio-blueprints-assets.storage.googleapis.com/public

View File

@ -11,7 +11,7 @@ jobs:
with:
node-version: 18
cache: "yarn"
- run: yarn --prefer-offline
- run: yarn
- run: yarn nx run-many --all --target=lint
- run: yarn nx run-many --all --target=test "--ci"
- run: yarn nx build blueprints

View File

@ -46,5 +46,5 @@ const promise = _init()
export const init = async () => {
await promise;
// await prisma.$connect();
await prisma.$connect();
};