Skip to content

Support sample table data in DBML #317

Support sample table data in DBML

Support sample table data in DBML #317

Workflow file for this run

name: Run linter
on:
pull_request:
branches: [master]
types: [opened, synchronize]
paths-ignore:
- 'dbml-homepage/**'
jobs:
lint:
runs-on: ubuntu-22.04
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