Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
command: ['pnpm lint', 'pnpm typescript', 'pnpm test']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.10
- uses: actions/setup-node@v3
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- run: pnpm install --frozen-lockfile
- run: pnpm prerelease
- name: Run cis
run: ${{ matrix.command }}