CLDSRV-898: CompleteMultipartUpload checksums #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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" |