Skip to content

fix(deps): update all non-major dependencies #129

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #129

Workflow file for this run

name: Lint, Format, Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Lint, Format, and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js with pnpm caching
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Run ESLint
run: pnpm run lint
- name: Run Prettier Check
run: pnpm run format:check
- name: Build Project
run: pnpm run build