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 name: CI Pull Request
on: push on:
pull_request:
jobs: jobs:
build: build:
name: ci-pull-request
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install modules - name: Install modules
run: yarn run: yarn
- name: Run ESLint - name: Run ESLint
run: yarn lint run: yarn lint
- name: Run TSC
run: yarn tsc