Skip to content

chore(deps): update all non-major dependencies #20

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #20

Workflow file for this run

# https://github.com/unocss/unocss/blob/fe83a90b59cf4599be57ea825166bb74d92b104c/.github/workflows/ci.yml
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node_version: [18, 20, 22]
fail-fast: false
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Setup corepack
run: corepack enable
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Type Check
run: pnpm type-check