Skip to content

fix: stabilize helper lifecycle and release v1.13.8 #91

fix: stabilize helper lifecycle and release v1.13.8

fix: stabilize helper lifecycle and release v1.13.8 #91

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dependencies
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi
- run: npm test