Skip to content

build(deps-dev): bump typescript from 5.2.2 to 5.5.3 #218

build(deps-dev): bump typescript from 5.2.2 to 5.5.3

build(deps-dev): bump typescript from 5.2.2 to 5.5.3 #218

Workflow file for this run

name: Code Linting
on: push
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Run ESLint
run: pnpm run lint