Skip to content

build(deps-dev): bump typescript from 5.4.4 to 5.5.2 #413

build(deps-dev): bump typescript from 5.4.4 to 5.5.2

build(deps-dev): bump typescript from 5.4.4 to 5.5.2 #413

Workflow file for this run

name: "[TS] Lint & Test"
on:
pull_request:
branches: [ "main" ]
jobs:
lint:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Run ESLint
run: pnpm lint
- name: Run TS Check
run: pnpm ts
- name: Run Prettier
run: pnpm format-check