Skip to content

chore: bump version to 3.1.2 #20

chore: bump version to 3.1.2

chore: bump version to 3.1.2 #20

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
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: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run quality checks
run: npm run check
- name: Build package
run: npm run build
- name: Package smoke test
run: npm pack --ignore-scripts