Skip to content

Upgrade all the things #190

Upgrade all the things

Upgrade all the things #190

Workflow file for this run

# https://turbo.build/repo/docs/ci/github-actions
name: Format Check
on: [pull_request]
jobs:
format-check:
name: Format Check
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Check file formatting
run: yarn format:check