fix(ci/lint): indentation was wrong
- correcting the indentation (yml de mort)
This commit is contained in:
parent
8e34b0563a
commit
369d0b2407
1 changed files with 21 additions and 21 deletions
42
.github/workflows/lint.yml
vendored
42
.github/workflows/lint.yml
vendored
|
|
@ -12,26 +12,26 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
name: Build & Lint
|
name: Build & Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
- name: Setup pnpm
|
- name: Setup pnpm
|
||||||
uses: pnpm/action-setup@v3
|
uses: pnpm/action-setup@v3
|
||||||
with:
|
with:
|
||||||
version: 8
|
version: 8
|
||||||
run_install: false
|
run_install: false
|
||||||
- name: Install dependencies with pnpm
|
- name: Install dependencies with pnpm
|
||||||
run: pnpm --prefix=./src/ install --frozen-lockfile
|
run: pnpm --prefix=./src/ install --frozen-lockfile
|
||||||
- name: Check linting
|
- name: Check linting
|
||||||
run: pnpm --prefix=./src/ exec eslint . --max-warnings=0
|
run: pnpm --prefix=./src/ exec eslint . --max-warnings=0
|
||||||
- name: Build
|
- name: Build
|
||||||
run: pnpm --prefix=./src/ run build
|
run: pnpm --prefix=./src/ run build
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue