Skip to content

fix: Fix TS complains #47

fix: Fix TS complains

fix: Fix TS complains #47

Workflow file for this run

name: TypeScript Types
on:
push:
branches: [main]
paths:
- "**.ts"
- "package.json"
- "pnpm-lock.yaml"
- "tsconfig.json"
- ".github/workflows/typescript.yml"
pull_request:
branches: [main]
paths:
- "**.ts"
- "package.json"
- "pnpm-lock.yaml"
- "tsconfig.json"
- ".github/workflows/typescript.yml"
jobs:
typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{steps.pnpm-cache.outputs.STORE_PATH}}
key: ${{runner.os}}-pnpm-store-${{hashFiles('**/pnpm-lock.yaml')}}
restore-keys: |
${{runner.os}}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run TypeScript
run: pnpm run lint:types