mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-23 21:34:13 +03:00
27 lines
447 B
YAML
27 lines
447 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: |
|
|
npm i -g yarn@1.19.1
|
|
cd app
|
|
yarn
|
|
cd ..
|
|
rm app/node_modules/.yarn-integrity
|
|
yarn
|
|
|
|
- name: Lint
|
|
run: yarn run lint
|