mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-23 02:22:02 +03:00
cb2c425063
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v2.3.4) Signed-off-by: dependabot[bot] <support@github.com>
30 lines
521 B
YAML
30 lines
521 B
YAML
name: Lint
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- 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
|