Skip to content

Bump version to 2.0.2 #3

Bump version to 2.0.2

Bump version to 2.0.2 #3

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
name: Build check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build
- name: Verify dist output
run: |
if [ ! -f dist/form-engine.es.js ] || [ ! -f dist/form-engine.umd.js ]; then
echo "❌ Expected dist files not found"
exit 1
fi
echo "✅ dist/form-engine.es.js and dist/form-engine.umd.js present"