Skip to content

Commit

Permalink
tracking where issue is
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorFries committed Jul 18, 2024
1 parent ec4adf8 commit 232c125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/helpers/npm-deps/parse-npm-deps.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ const packageJsonPaths = LOCAL_TEST

// Ignore packages from env.
const ignorePackages = LOCAL_TEST ? TEST_IGNORE_PACKAGES : JSON.parse(process.env.ignorePackages);
console.log(LOCAL_TEST)
console.log(ignorePackages)

// Save results to json.
let results = {};
Expand Down
1 change: 0 additions & 1 deletion .github/helpers/parse-json5-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ fs.readFile(filePath, "utf8", (err, data) => {

// Set each key-value pair as an environment variable
for (const [key, value] of Object.entries(jsonData)) {
console.log("test key: ", key, " Value: ", value)
// Serialize arrays and objects to JSON strings
const envValue =
typeof value === "object" ? JSON.stringify(value) : value;
Expand Down

0 comments on commit 232c125

Please sign in to comment.