Thanks to visit codestin.com
Credit goes to github.com

Skip to content

slightly change how diagram element function with callback work to be… #120

slightly change how diagram element function with callback work to be…

slightly change how diagram element function with callback work to be… #120

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint with ESLint & check formatting with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Lint with ESLint
run: npm run lint:check
- name: Check formatting with Prettier
run: npm run format:check