Skip to content

release(prod): stage to main #13

release(prod): stage to main

release(prod): stage to main #13

Workflow file for this run

name: Validate PR
on:
pull_request:
types:
- labeled
- opened
- synchronize
- reopened
- ready_for_review
- edited
jobs:
pr-validate-title:
name: Validate PR title
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Release has been added so that we can easily see trunk based PRs
types: |
feat
fix
docs
ci
chore
release
requireScope: false
pr-lint:
name: Lint on PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run build-src
- run: npm run validate