mirror of
https://github.com/Eugeny/tabby
synced 2024-12-14 07:12:50 +00:00
31 lines
556 B
YAML
31 lines
556 B
YAML
name: Lint
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Installing Node
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: 14
|
|
|
|
- name: Install deps
|
|
run: |
|
|
npm i -g yarn@1.19.1
|
|
cd app
|
|
yarn
|
|
cd ..
|
|
rm app/node_modules/.yarn-integrity
|
|
yarn
|
|
|
|
- name: Build typings
|
|
run: yarn run build:typings
|
|
|
|
- name: Lint
|
|
run: yarn run lint
|