Skip to content

build(deps): bump undici from 6.6.1 to 6.6.2 #142

build(deps): bump undici from 6.6.1 to 6.6.2

build(deps): bump undici from 6.6.1 to 6.6.2 #142

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