Skip to content

docs: update readme

docs: update readme #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
PNPM_VERSION: 9.6.0
NODE_VERSION: 20
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run CI
run: pnpm run ci