Lint, test, and build JavaScript or TypeScript projects.

Section: Language and framework examples

Node.js targets

makefile
makefile
.PHONY: lint test build
lint:
	pnpm lint

test:
	pnpm test

build:
	pnpm build
Explanation

Simple and team-friendly task aliases.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Language and framework examples
Python targets
Format, lint, and test a Python project.
OpenIn sheetmakefilesame section
Go targets
Format, test, and build Go projects.
OpenIn sheetmakefilesame section
Delegate to gradle or maven
Wrap build tool commands in stable team-facing targets.
OpenIn sheetmakefilesame section
Help target
List available targets and descriptions.
OpenIn sheetmakefile
Docker build target
Build a container image with a version tag.
OpenIn sheetmakefile
Generate version file
Write current version metadata into an artifact.
OpenIn sheetmakefile