# yarn
yarn
# npm
npm install
# pnpm
pnpm install
# bun
bun install
# yarn
yarn dev
# npm
npm run dev
# pnpm
pnpm dev
# bun
bun run dev
# yarn
yarn build
# npm
npm run build
# pnpm
pnpm build
# bun
bun run build
# yarn
yarn lint
# npm
npm run lint
# pnpm
pnpm lint
# bun
bun run lint
If you are using the Yeti Docker development environment, ensure your frontend container (dev-frontend-1) is running and execute:
docker exec dev-frontend-1 npm run test:e2eInstall Playwright and its dependencies first:
npx playwright install --with-deps
npm run test:e2eTo run tests with the interactive UI:
npm run test:e2e-ui