Add GitHub Action to run tsc on pull request events (#232)

This commit is contained in:
Daniel
2023-02-24 16:38:44 +01:00
committed by GitHub
parent 56fe90d049
commit 1914a61edd

View File

@@ -1,11 +1,17 @@
name: Lint
on: push
name: CI Pull Request
on:
pull_request:
jobs:
build:
name: ci-pull-request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn lint
- name: Run TSC
run: yarn tsc