tabby/.github/workflows/lint.yml

32 lines
556 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@v2.3.4
2021-05-16 11:37:48 +00:00
with:
fetch-depth: 0
2019-10-11 22:10:22 +00:00
- name: Installing Node
uses: actions/setup-node@v2.1.5
2019-10-11 22:10:22 +00:00
with:
2021-05-16 16:58:46 +00:00
node-version: 14
2019-10-11 22:10:22 +00:00
- name: Install deps
run: |
2019-10-14 05:53:30 +00:00
npm i -g yarn@1.19.1
2019-10-11 22:10:22 +00:00
cd app
yarn
cd ..
rm app/node_modules/.yarn-integrity
yarn
2020-12-24 15:30:00 +00:00
- name: Build typings
run: yarn run build:typings
2019-10-11 22:10:22 +00:00
- name: Lint
run: yarn run lint