Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

chore(deps): update typescript-eslint monorepo to v8 (major) #507

chore(deps): update typescript-eslint monorepo to v8 (major)

chore(deps): update typescript-eslint monorepo to v8 (major) #507

name: Format and Lint
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
format_and_lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Cache
uses: actions/cache@v4
with:
path: ~/.cache/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: ${{ runner.os }}-bun-
- name: Install
run: bun install
- name: Format
run: bun format
- name: Lint
run: bun lint