Skip to content

refactor(OUT-2108): removed unwanted code #380

refactor(OUT-2108): removed unwanted code

refactor(OUT-2108): removed unwanted code #380

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