From 3cad5d280e75afbd78a89abf641ac58ebdb1f4c2 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Wed, 9 Mar 2022 23:36:16 -0800 Subject: [PATCH] Just try to get GitHub Actions to tell us what we have here --- packages/skin-database/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/skin-database/db.ts b/packages/skin-database/db.ts index 638a437b..7680cd7d 100644 --- a/packages/skin-database/db.ts +++ b/packages/skin-database/db.ts @@ -2,6 +2,6 @@ import Knex from "knex"; import * as knexConfigs from "./knexfile"; import { NODE_ENV } from "./config"; -console.log({ NODE_ENV }); +throw new Error(`NODE_ENV: ${NODE_ENV}`); export const knex = Knex(knexConfigs[NODE_ENV]);