Skip to content

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

Add pagination to all summary steps (merge commit)

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

Workflow file for this run

name: Non-js file formatting (json, md etc.) check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20"]
name: Prettier 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 format check with Prettier
run: |
pnpm run format:check