Skip to content

feat: add footer component (#7) #4

feat: add footer component (#7)

feat: add footer component (#7) #4

Workflow file for this run

name: Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm lint
- name: Check code formatting
run: pnpm format:check
- name: Annotate code linting results
if: failure()
run: |
echo "::error::Linting failed. Run 'pnpm lint:fix' locally to fix issues."
exit 1