mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
20 lines
374 B
YAML
20 lines
374 B
YAML
name: lint & typescript check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- packages/mobile/**
|
|
|
|
jobs:
|
|
lint:
|
|
defaults:
|
|
run:
|
|
working-directory: ./packages/mobile
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Lint code
|
|
run: yarn lint
|