Skip to content

build(deps-dev): bump typescript-eslint from 8.18.2 to 8.19.0 #325

build(deps-dev): bump typescript-eslint from 8.18.2 to 8.19.0

build(deps-dev): bump typescript-eslint from 8.18.2 to 8.19.0 #325

Workflow file for this run

name: Pull request CI
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- "**.md"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install packages
run: npm ci
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run check
- name: Build
run: npm run build