Skip to content

User defined tables (#345) #609

User defined tables (#345)

User defined tables (#345) #609

Workflow file for this run

name: Lint JS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-importer:
defaults:
run:
working-directory: ./lib/importer
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '20', '22', '24' ]
name: Lint Importer (Node.js ${{ matrix.node-version }})
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Run linter
run: npm run lint