From 61da54528165743bab74fc6be0db7399fe89708a Mon Sep 17 00:00:00 2001 From: Raphael Date: Sun, 28 Sep 2025 22:53:24 +0200 Subject: [PATCH] fix(ci/lint): indentation was wrong - correcting the indentation (yml de mort) --- .github/workflows/lint.yml | 43 +++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 86e7d36..eeb0343 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,26 +12,27 @@ permissions: contents: read jobs: - name: Build & Lint - runs-on: ubuntu-latest + build: + name: Build & Typecheck + runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'pnpm' - - name: Setup pnpm - uses: pnpm/action-setup@v3 - with: - version: 8 - run_install: false - - name: Install dependencies with pnpm - run: pnpm --prefix=./src/ install --frozen-lockfile - - name: Check linting - run: pnpm --prefix=./src/ exec eslint . --max-warnings=0 - - name: Build - run: pnpm --prefix=./src/ run build + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'pnpm' + - name: Setup pnpm + uses: pnpm/action-setup@v3 + with: + version: 8 + run_install: false + - name: Install dependencies with pnpm + run: pnpm --prefix=./src/ install --frozen-lockfile + - name: Check linting + run: pnpm --prefix=./src/ exec eslint . --max-warnings=0 + - name: Build + run: pnpm --prefix=./src/ run build