chore(scripts/validateTags): fix import

This commit is contained in:
xHyroM 2022-07-16 14:32:58 +02:00
parent 89ff682211
commit b78a3d04b6
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
name: Validate Tag
name: Validate Tags
on:
pull_request_target:

View file

@ -2,7 +2,7 @@ const files = await Bun.file('./files.json').text();
if (!files.includes('files/tags.toml')) process.exit(0);
// @ts-expect-error types
const tags = await import('./files/tags.toml');
const tags = await import('../../../files/tags.toml');
console.log(tags);
export { };