Skip to content

DBX-5320 Optional ref #1566

DBX-5320 Optional ref

DBX-5320 Optional ref #1566

Workflow file for this run

name: Run linter
on:
pull_request:
branches: [master]
types: [opened, synchronize]
paths-ignore:
- 'dbml-homepage/**'
jobs:
lint:
runs-on: blacksmith-2vcpu-ubuntu-2204
timeout-minutes: 5
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint