Skip to content

Bump version to 0.8.1 #69

Bump version to 0.8.1

Bump version to 0.8.1 #69

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint and format check
run: |
npm run lint
npm run format:check
- name: Run regression tests
run: npm run test:regression