tabby/.github/workflows/lint.yml
dependabot[bot] e79da7aa49
Bump actions/setup-node from 1 to 2.1.5
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 1 to 2.1.5.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v1...v2.1.5)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 08:31:08 +00:00

29 lines
517 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@v2.1.5
with:
node-version: 15
- 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