Skip to content

Fix/cjs types and options errors #31

Fix/cjs types and options errors

Fix/cjs types and options errors #31

Workflow file for this run

name: Format Check
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master, develop]
workflow_dispatch: {}
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check