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

fix: Add license to package.json #51

fix: Add license to package.json

fix: Add license to package.json #51

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v6
# https://github.com/actions/setup-node
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- run: npm ci
- name: lint
run: npm run lint
- run: npm run build
- name: test
run: npm run test:ci
# https://github.com/codecov/codecov-action
- name: coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}