Skip to content

ATO-828: Set up linting in CI #1

ATO-828: Set up linting in CI

ATO-828: Set up linting in CI #1

name: Pre-merge checks
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize
merge_group:
jobs:
style-checks:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- name: Run lint
run: npm run check:lint
- name: Run prettier
run: npm run check:pretty