Skip to content

Add pagination to all summary steps (merge commit) #2505

Add pagination to all summary steps (merge commit)

Add pagination to all summary steps (merge commit) #2505

Workflow file for this run

name: Static type check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20"]
name: TypeScript check
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: |
pnpm install
- name: Run type checks with TSC
run: |
pnpm run tsc