Skip to content

Feat/code documentation #74

Feat/code documentation

Feat/code documentation #74

Workflow file for this run

name: 'Linter'
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn prettier --check "**/*.{yml,yaml,json,md,js,ts}"