attempt fixing github test

This commit is contained in:
DJ2LS 2024-01-23 11:39:16 +01:00
parent 83ecc2bca1
commit 965dd5e29d
2 changed files with 13 additions and 1 deletions

View file

@ -105,6 +105,12 @@ export function getAppDataPath() {
const platform = os.platform();
let appDataPath;
// Check if running in GitHub Actions
const isGitHubActions = process.env.GITHUB_ACTIONS === 'true';
if (isGitHubActions) {
return "/home/runner/work/FreeDATA/FreeDATA/gui/config";
}
switch (platform) {
case "darwin": // macOS
appDataPath = path.join(os.homedir(), "Library", "Application Support");

View file

@ -7,7 +7,13 @@ const nconf = require("nconf");
var appDataPath = getAppDataPath();
var configFolder = path.join(appDataPath, "FreeDATA");
var configPath = path.join(configFolder, "config.json");
let configFile = "config.json"
const isGitHubActions = process.env.GITHUB_ACTIONS === 'true';
if (isGitHubActions) {
configFile = "example.json";
}
var configPath = path.join(configFolder, configFile);
console.log("AppData Path:", appDataPath);
console.log(configFolder);