Skip to content

chore(deps): update dependency oxfmt to v0.66.0 (#2938) #5488

chore(deps): update dependency oxfmt to v0.66.0 (#2938)

chore(deps): update dependency oxfmt to v0.66.0 (#2938) #5488

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Install pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
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