Skip to content

migrate ESLint configuration from CommonJS to ES module format #2

migrate ESLint configuration from CommonJS to ES module format

migrate ESLint configuration from CommonJS to ES module format #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format
run: npm run format