mirror of
https://github.com/Eugeny/tabby.git
synced 2025-01-12 13:54:45 +08:00
27 lines
443 B
YAML
27 lines
443 B
YAML
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: |
|
|
yarn cache clean
|
|
cd app
|
|
yarn
|
|
cd ..
|
|
rm app/node_modules/.yarn-integrity
|
|
yarn
|
|
|
|
- name: Lint
|
|
run: yarn run lint
|