Skip to content

chore(release): bump version to 4.0.3 #25

chore(release): bump version to 4.0.3

chore(release): bump version to 4.0.3 #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check for merge conflict markers
run: |
if git grep -nE '^(<<<<<<<|=======|>>>>>>>)' -- .; then
echo "Merge conflict markers found in tracked files." >&2
exit 1
fi
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run quality checks
run: npm run check