Skip to content
This repository has been archived by the owner on Nov 16, 2024. It is now read-only.

feat: add copy json button #14

feat: add copy json button

feat: add copy json button #14

Workflow file for this run

name: Run linter and check types
on:
workflow_dispatch:
pull_request:
paths-ignore:
- '.vscode/**'
- '.github/**'
- 'LICENSE'
- 'renovate.json'
- 'CHANGELOG.md'
- 'README.md'
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- run: pnpm install --frozen-lockfile
- name: Generate types
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run typecheck