Skip to content

build(deps-dev): bump @types/node from 20.12.7 to 20.14.9 #176

build(deps-dev): bump @types/node from 20.12.7 to 20.14.9

build(deps-dev): bump @types/node from 20.12.7 to 20.14.9 #176

Workflow file for this run

name: CI (Typecheck & Lint)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Linting check
run: pnpm run lint
- name: Prettier check
run: pnpm run prettier:check
- name: Typecheck
run: pnpm run typecheck