Skip to content

fix(deps): update typescript-eslint monorepo to v8.0.1 #51

fix(deps): update typescript-eslint monorepo to v8.0.1

fix(deps): update typescript-eslint monorepo to v8.0.1 #51

Workflow file for this run

name: build ci
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Check
run: pnpm run check:format
- name: Build
run: pnpm run build