Skip to content

Fixed workflow triggers #108

Fixed workflow triggers

Fixed workflow triggers #108

Workflow file for this run

name: Lint
on: [pull_request, 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 ESLint
run: npm run lint
shell: bash