2020-06-08 15:15:43 +03:00
|
|
|
name: console lint
|
2020-05-29 14:15:43 +03:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'console/**'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
working-directory: ./console
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2020-06-02 11:14:45 +03:00
|
|
|
- name: Use Node.js 12
|
2020-05-29 14:15:43 +03:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2020-06-02 11:14:45 +03:00
|
|
|
node-version: 12.x
|
2020-05-29 14:15:43 +03:00
|
|
|
|
|
|
|
- name: Install
|
|
|
|
working-directory: ${{env.working-directory}}
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
working-directory: ${{env.working-directory}}
|
|
|
|
run: npm run lint:quiet
|
|
|
|
|
|
|
|
- name: Format
|
|
|
|
working-directory: ${{env.working-directory}}
|
|
|
|
run: npm run format:check
|