Skip to content

ci: add workflows (format, lint, test) #1

ci: add workflows (format, lint, test)

ci: add workflows (format, lint, test) #1

Workflow file for this run

name: Format (check only)
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: latest
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run check-format