Skip to content

refactor(mod)♻️: convert all modules to ESM format #918

refactor(mod)♻️: convert all modules to ESM format

refactor(mod)♻️: convert all modules to ESM format #918

Workflow file for this run

name: ESLint
on:
push:
branches: ['main', 'major', 'minor', 'patch']
pull_request:
branches: ['main', 'major', 'minor', 'patch']
jobs:
eslint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npx eslint . --max-warnings=0