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