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

docs: add deprecation notice — package no longer maintained (#43) #73

docs: add deprecation notice — package no longer maintained (#43)

docs: add deprecation notice — package no longer maintained (#43) #73

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [20.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: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Type check
run: npm run type-check
- name: Test
run: npm test
- name: Test coverage
run: npm run test:coverage