WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

chore(deps): update dependency @types/node to v22.19.1 #36

chore(deps): update dependency @types/node to v22.19.1

chore(deps): update dependency @types/node to v22.19.1 #36

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Install pnpm via Corepack
run: corepack prepare [email protected] --activate
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
- name: Install dependencies
run: pnpm install
- name: Check formatting
run: pnpm run format
- name: Run linting
run: pnpm run lint
- name: Build project
run: pnpm run build
- name: Run tests
run: pnpm test