Skip to content

Add EditorConfig to the CI #137

Add EditorConfig to the CI

Add EditorConfig to the CI #137

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bahmutov/npm-install@v1
- name: Check TypeScript
run: npx tsc
shell: bash
- name: Run EditorConfig
uses: zbeekman/[email protected]
- name: Run ESLint
run: npm run lint
shell: bash