Skip to content

Add static checks for editor endpoint clients #2

Add static checks for editor endpoint clients

Add static checks for editor endpoint clients #2

Workflow file for this run

name: JavaScript static checks
on:
push:
pull_request:
jobs:
javascript-checks:
name: Prettier, ESLint, and checkJs
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install JavaScript tooling
run: npm ci
- name: Run JavaScript checks
run: npm run check