Skip to content

feat: Updated .github/workflows/lint.yml #1

feat: Updated .github/workflows/lint.yml

feat: Updated .github/workflows/lint.yml #1

Workflow file for this run

name: Lint Code from Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
steps:

Check failure on line 17 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run linting
run: pnpm lint