I added an item at the end of an items array here and it led to CI failure.
When I put it at the beginning of the list the CI workflow succeeded.
I installed the workflow locally and ran vp-docs.js against the fuels-ts docs. The failing ordering yields this:
const order = processVPConfig(configFile.split(EOL));
console.log(order);
// Tooling: [],
// Testing: [
// 'Testing in TS',
// 'Setting Up a Custom Chain',
// 'Tweaking the Blockchain'
// ],
// CLI: [],
// fuels: [ 'Config File', 'Commands', 'Binaries', 'Graphql Integration' ],
The successful ordering yields this:
const order = processVPConfig(configFile.split(EOL));
console.log(order);
// Tooling: [ 'GraphQL Integration' ],
// Testing: [
// 'Testing in TS',
// 'Setting Up a Custom Chain',
// 'Tweaking the Blockchain'
// ],
// CLI: [],
// fuels: [ 'Config File', 'Commands', 'Binaries' ],
I added an item at the end of an
itemsarray here and it led to CI failure.When I put it at the beginning of the list the CI workflow succeeded.
I installed the workflow locally and ran
vp-docs.jsagainst thefuels-tsdocs. The failing ordering yields this:The successful ordering yields this: