Skip to content

Commit

Permalink
Fix categories.json path (#8234)
Browse files Browse the repository at this point in the history
  • Loading branch information
hkamran80 authored Oct 25, 2024
1 parent 3a0da9c commit 2b16d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const core = require("@actions/core");
async function main() {
let errors = false;
const files = process.argv.slice(2);
const categoriesFile = await fs.readFile("categories.json", "utf8");
const categoriesFile = await fs.readFile("tests/categories.json", "utf8");
const data = JSON.parse(categoriesFile);
const allowed_categories = Object.keys(data);

Expand Down

0 comments on commit 2b16d89

Please sign in to comment.