Skip to content

Fix tsconfig

Fix tsconfig #953

Workflow file for this run

---
name: Lint
on:
push:
paths-ignore:
- ".github/workflows/**"
workflow_dispatch:
inputs: {}
defaults:
run:
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
node-version: "18"
- name: Run linter and spellcheck
run: |
npm ci
npm run lint
npm run spellcheck