Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: CI
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm run test