Home About us Support Partners SIGN UP NOW

Ts [updated] — Littlecib

pipeline.addStep(step('Run tests', async () => { await run('npm test'); }));

pipeline.addStep(step('Run linter', async () => { await run('npm run lint'); }));

pipeline.addStep(step('Install dependencies', async () => { await run('npm ci'); }));