Skip to content

style(README): markdown Usage Important section bit misspell #1867

style(README): markdown Usage Important section bit misspell

style(README): markdown Usage Important section bit misspell #1867

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
ci:
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: npm
- run: npm ci
- run: npm run fmt:check
- run: npm run lint
- run: npm test
dependency-review:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/dependency-review-action@v3