Skip to content

update ESLint configuration: change import statements to use ES modul… #3

update ESLint configuration: change import statements to use ES modul…

update ESLint configuration: change import statements to use ES modul… #3

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