Skip to content

chore(deps-dev): bump typescript from 5.3.3 to 5.5.3 #22

chore(deps-dev): bump typescript from 5.3.3 to 5.5.3

chore(deps-dev): bump typescript from 5.3.3 to 5.5.3 #22

Workflow file for this run

name: Lint
on:
push:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Lint project
run: pnpm run lint && pnpm run build