Skip to content

Merge pull request #159 from copilot-platforms/OUT-2291 #536

Merge pull request #159 from copilot-platforms/OUT-2291

Merge pull request #159 from copilot-platforms/OUT-2291 #536

Workflow file for this run

name: Lint
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.14.0
cache: yarn
cache-dependency-path: './yarn.lock'
- name: Install dependencies
run: yarn install
- name: Run linters
run: yarn lint:check && yarn prettier:check