#!/bin/bash
set -euo pipefail

echo "Building TaskFlow API..."
npm run build

echo "Running linter..."
npm run lint

echo "Running tests..."
npm test

echo "Build completed successfully!"
