Skip to content

chore(deps): bump yaml from 2.6.0 to 2.6.1 #37

chore(deps): bump yaml from 2.6.0 to 2.6.1

chore(deps): bump yaml from 2.6.0 to 2.6.1 #37

Workflow file for this run

name: Code quality checks
on:
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Activate corepack
run: |
corepack install
corepack enable
- name: Install dependencies
run: yarn --immutable
- name: Check formatting
run: yarn turbo format:check