Skip to content

feat(package-lock): Bump version to 2.0.0 #4

feat(package-lock): Bump version to 2.0.0

feat(package-lock): Bump version to 2.0.0 #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- 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