Skip to content

Merge pull request #82 from groot007/dev #133

Merge pull request #82 from groot007/dev

Merge pull request #82 from groot007/dev #133

Workflow file for this run

name: Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
name: Run Linting
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run TypeScript checks
run: yarn typecheck
- name: Run linting
run: yarn lint