tabby/.github/workflows/lint.yml

30 lines
521 B
YAML
Raw Normal View History

2019-10-11 15:10:22 -07:00
name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
2019-10-11 15:10:22 -07:00
- name: Installing Node
uses: actions/setup-node@v2.1.5
2019-10-11 15:10:22 -07:00
with:
2020-12-24 16:16:13 +01:00
node-version: 15
2019-10-11 15:10:22 -07:00
- name: Install deps
run: |
2019-10-13 22:53:30 -07:00
npm i -g yarn@1.19.1
2019-10-11 15:10:22 -07:00
cd app
yarn
cd ..
rm app/node_modules/.yarn-integrity
yarn
2020-12-24 16:30:00 +01:00
- name: Build typings
run: yarn run build:typings
2019-10-11 15:10:22 -07:00
- name: Lint
run: yarn run lint