Bump sharp from 0.35.0 to 0.35.1 #49
Workflow file for this run
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: 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 |