tabby/.github/workflows/lint.yml

27 lines
443 B
YAML
Raw Normal View History

2019-10-11 22:10:22 +00:00
name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Installing Node
uses: actions/setup-node@v1
with:
version: 10
- name: Install deps
run: |
2019-10-11 22:25:08 +00:00
yarn cache clean
2019-10-11 22:10:22 +00:00
cd app
yarn
cd ..
rm app/node_modules/.yarn-integrity
yarn
- name: Lint
run: yarn run lint