Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 #549

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2

chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 #549

Workflow file for this run

name: CI
on:
push:
branches: [main, v1.1-dev]
pull_request:
branches: [main, v1.1-dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm prettier . --check
- name: Run linter
run: pnpm lint
- name: Build project
run: pnpm build