Skip to content

chore: bump version to 0.2.2 and update changelog #15

chore: bump version to 0.2.2 and update changelog

chore: bump version to 0.2.2 and update changelog #15

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Verify dist directory
run: |
if [ ! -d "dist" ]; then
echo "dist directory not found"
exit 1
fi
if [ ! -f "dist/bin/commit-msg.js" ]; then
echo "Main executable not found in dist"
exit 1
fi