dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import { last } from 'lodash';
|
|
import { getMetaData } from './project-metadata.js';
|
|
|
|
function getLastStep(): { stepNum: number } {
|
|
const meta = getMetaData();
|
|
const challengeOrder = meta.challengeOrder;
|
|
const step = last(challengeOrder);
|
|
if (!step) throw new Error('No steps found');
|
|
|
|
return { stepNum: challengeOrder.length };
|
|
}
|
|
|
|
export { getLastStep };
|