Skip to content

Bump prettier from 3.1.0 to 3.2.2 (#2113) #1119

Bump prettier from 3.1.0 to 3.2.2 (#2113)

Bump prettier from 3.1.0 to 3.2.2 (#2113) #1119

Workflow file for this run

name: "Lint and Build"
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
cache: yarn
node-version: '18'
- run: yarn install --frozen-lockfile
- name: Run depcheck
run: |
yarn global add depcheck
yarn run depcheck
- run: yarn lint
- run: yarn build