peacelovecookies/frontend-project-lvl2

View on GitHub
.github/workflows/eslint.yml

Summary

Maintainability
Test Coverage
  
name: Linter
on:
  push:
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [13.x]
    
    steps:
    - uses: actions/checkout@v2
    - name: Use Node.js
      uses: actions/setup-node@v1
      with:
        node-version: ${{ matrix.node-version }}
    - name: npm install
      run: make install
    - name: Run Lint
      run: make lint
    # - name: Run test
    #   run: make test