Skip to content

ci: always checkout with LF line endings #4

ci: always checkout with LF line endings

ci: always checkout with LF line endings #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node-version:
- 18
- 20
- 22
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |

Check failure on line 25 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm check-format
- run: pnpm build