Skip to content

Bump version to 0.30.0-beta.18 and update CHANGELOG #60

Bump version to 0.30.0-beta.18 and update CHANGELOG

Bump version to 0.30.0-beta.18 and update CHANGELOG #60

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test with coverage
run: npm run test:coverage
- name: Build
run: npm run build