Skip to content

chore(deps): update dependency pkg-pr-new to v0.0.73 (#2869) #5316

chore(deps): update dependency pkg-pr-new to v0.0.73 (#2869)

chore(deps): update dependency pkg-pr-new to v0.0.73 (#2869) #5316

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22, 24, 26]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- run: pnpm install
- run: pnpm run lint
- run: pnpm run format-check
- run: pnpm run test:coverage
env:
CI: true
- run: pnpm run test:build
- run: pnpm run tsd
- run: pnpm run vue-tsc
- run: pnpm run tsc:docs