Skip to content

dap: include additional launch configuration to customize the builder #190

dap: include additional launch configuration to customize the builder

dap: include additional launch configuration to customize the builder #190

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: 'Checkout code'
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run prettier:check