Fix incorrect comparison logic

This commit is contained in:
3xp0rt 2025-06-02 21:40:55 +03:00
parent 5048141bbd
commit f2d6001505

View File

@ -26,7 +26,8 @@ jobs:
const dataPath = 'wmn-data.json';
const schemaPath = 'wmn-data-schema.json';
const data = JSON.parse(fs.readFileSync(dataPath, 'utf8'));
const original = fs.readFileSync(dataPath, 'utf8');
const data = JSON.parse(original);
const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8'));
// ---------- Sorting Helpers ----------