Skip to content

Update contributors #178

Update contributors

Update contributors #178

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Check EditorConfig
run: npx editorconfig-checker
shell: bash
- name: Check TypeScript
run: npx tsc
shell: bash
- name: Run ESLint
run: npm run lint
shell: bash