Skip to content

Bump sharp from 0.35.0 to 0.35.1 #49

Bump sharp from 0.35.0 to 0.35.1

Bump sharp from 0.35.0 to 0.35.1 #49

Workflow file for this run

name: Format
on:
# PR-only: avoids duplicate runs and the credential-less checkout failure
# that push-event runs hit on non-default branches.
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: format-${{ github.ref }}
cancel-in-progress: true
# Least privilege: linting only needs to read the repo.
permissions:
contents: read
jobs:
prettier:
name: prettier --check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- name: Install dependencies (clean, from lockfile)
run: npm ci
- name: Check formatting
run: npm run format:check