This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/.github/workflows/linting.yml
2020-08-02 11:10:26 +02:00

27 lines
540 B
YAML

name: Dashboard Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: windows-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: cd Dashboard && yarn --network-timeout 1000000000
- name: Lint
run: cd Dashboard && yarn lint