Skip to content

chore: make it easy to find the repository/source from npm #2

chore: make it easy to find the repository/source from npm

chore: make it easy to find the repository/source from npm #2

Workflow file for this run

name: Inspect
on:
pull_request:
jobs:
inspect:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: Run Linter
run: pnpm lint
- name: Check Types
run: pnpm tsc --noEmit
- name: Run Tests
run: pnpm test