Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

chore(main): release 1.2.0 (#12) #28

chore(main): release 1.2.0 (#12)

chore(main): release 1.2.0 (#12) #28

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, 24]
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
run: npm ci
- name: CI
run: npm run test:ci