Reference workflows

GitHub Actions Templates

Production-ready, copy-paste workflow templates with Pipegrade provenance and security-first defaults.

Preview

Next.js + Vercel + Playwright

nextjs-vercel-playwright.ymlView details
# Created by https://pipegrade.io# Template: Next.js + Vercel + Playwright# Edit at https://pipegrade.io/github-actions/nextjs-vercel-playwright name: Next.js CIon:  # Run only when app or lockfile paths change so docs-only commits do not burn CI minutes.  push:    branches:      - main    paths:      - app/**      - components/**      - package.json      - package-lock.json  pull_request:    paths:      - app/**      - components/**      - package.json      - package-lock.json permissions:  # Default the GitHub token to read-only; grant write permissions only in deploy-specific steps.  contents: read concurrency:  # Cancel older runs from the same branch or PR when a newer commit arrives.  group: nextjs-${{ github.workflow }}-${{ github.ref }}  cancel-in-progress: true

Updates

Get new template drops