Skip to content

update documentation #126

update documentation

update documentation #126

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 8.6.11
- uses: actions/setup-node@v2
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
cache: pnpm
- name: install deps
run: pnpm install
- name: build
run: pnpm -r build
- name: lint
run: pnpm lint
- name: check with prettier
run: pnpm prettier . --check
- name: test
run: pnpm test