Skip to content

feat: simplify procedure types #1

feat: simplify procedure types

feat: simplify procedure types #1

Workflow file for this run

name: Perf
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
perf:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-all-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-all-
- run: pnpm install --child-concurrency 3
- run: pnpm build
- run: cd examples/big-router-declaration && pnpm tsc --extendedDiagnostics
- run: cd examples/next-prisma-starter && pnpm tsc --extendedDiagnostics
# Checkout target
- run: git checkout $${github.head_ref}}
- run: pnpm install --child-concurrency 3
- run: pnpm build