Skip to content

build(deps): bump undici from 5.25.2 to 5.26.2 (#179) #65

build(deps): bump undici from 5.25.2 to 5.26.2 (#179)

build(deps): bump undici from 5.25.2 to 5.26.2 (#179) #65

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