Just try to get GitHub Actions to tell us what we have here

This commit is contained in:
Jordan Eldredge 2022-03-09 23:36:16 -08:00
parent 29ba129cb0
commit 3cad5d280e

View file

@ -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]);