mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 23:02:41 +00:00
e79da7aa49
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>
29 lines
517 B
YAML
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
|