Skip to content

2.0.0

2.0.0 #9

name: validate commit
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
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 ci
- run: npm run test