Skip to content

fix setup

fix setup #1321

Workflow file for this run

# name: Build
# on:
# push:
# branches:
# - "**"
# - "!main"
# pull_request:
# branches:
# - "**"
# - "!main"
# jobs:
# CI:
# runs-on: windows-latest
# steps:
# - name: Set git to use LF
# run: |
# git config --global core.autocrlf false
# git config --global core.eol lf
# - uses: actions/checkout@v4
# - uses: pnpm/action-setup@v2
# with:
# version: latest
# - uses: actions/setup-node@v4
# with:
# node-version: 20
# - name: install dependencies
# run: pnpm install --frozen-lockfile
# - name: lint
# run: pnpm lint
# - name: build
# run: pnpm build