Skip to content

Add GitHub actions workflow for validating commits #1

Add GitHub actions workflow for validating commits

Add GitHub actions workflow for validating commits #1

Workflow file for this run

name: validate commit
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
cache: 'npm'
cache-dependency-path: '*/package-lock.json'
- run: npm run test