Prerequisites
You need an account before starting, create one here.
Basic Node.js workflow
This simple workflow installs dependencies and runs tests and linting commands:
.pandaci/ci.workflow.ts
Advanced Node.js workflow
This more advanced workflow uses caching, separate jobs, and only deploys on the main branch:
.pandaci/advanced-ci.workflow.ts
Package Manager Options
Using npm
.pandaci/npm-ci.workflow.ts
Using PNPM
.pandaci/pnpm-ci.workflow.ts
Using Yarn
.pandaci/yarn-ci.workflow.ts
Testing with multiple Node.js versions
Test your application across different Node.js versions:
.pandaci/node-matrix.workflow.ts
Including code coverage reports
Generate and analyze code coverage reports:
.pandaci/code-coverage.workflow.ts
Learn more about the workflow syntax.