Skip to content

add changelog

add changelog #19

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run lint && npm run test && npm run build