Skip to content

refactor(tsconfig): remove redundant options, add comments #44

refactor(tsconfig): remove redundant options, add comments

refactor(tsconfig): remove redundant options, add comments #44

Workflow file for this run

name: build
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
run_install: true
- name: Install Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: "24"
cache: pnpm
- name: Run linters
run: pnpm run lint:all
- name: Run build
run: pnpm run build