Files
standardnotes-app-web/.github/workflows/pr.yml

28 lines
382 B
YAML

name: Pull request
on:
pull_request:
branches:
- develop
- master
jobs:
tsc:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install --pure-lockfile
- name: Typescript
run: yarn tsc
- name: ESLint
run: yarn lint --quiet