Skip to content

feat:optipex change github workflow #8

feat:optipex change github workflow

feat:optipex change github workflow #8

Workflow file for this run

# .github/workflows/lint.yml
name: Lint Check
on: [push, pull_request]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24.5.0
cache: 'pnpm'
- uses: pnpm/action-setup@v2
with:
version: 9 # ili tvoja verzija pnpm-a
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint:ci
- name: Type check
run: pnpm typecheck