Skip to content

build(deps-dev): bump typescript from 5.4.5 to 5.7.3 #1257

build(deps-dev): bump typescript from 5.4.5 to 5.7.3

build(deps-dev): bump typescript from 5.4.5 to 5.7.3 #1257

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.4.1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.18.3
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test