Skip to content

docs: update CHANGELOG for v0.1.1 #1

docs: update CHANGELOG for v0.1.1

docs: update CHANGELOG for v0.1.1 #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: ["**"]
workflow_dispatch:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint and build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build