Skip to content

CLDSRV-898: CompleteMultipartUpload checksums #16

CLDSRV-898: CompleteMultipartUpload checksums

CLDSRV-898: CompleteMultipartUpload checksums #16

Workflow file for this run

---
name: lint
on:
pull_request:
branches-ignore:
- 'q/*/**'
permissions:
contents: read
jobs:
prettier:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: yarn
- name: install dependencies
run: yarn install --frozen-lockfile --network-concurrency 1
- name: Prettier (changed files)
shell: bash
env:
BASE_REF: ${{ github.event.pull_request.base.ref }}
run: |
MERGE_BASE=$(git merge-base HEAD "origin/${BASE_REF}")
yarn run --silent prettier:diff --check "${MERGE_BASE}..HEAD"