kasapvictor/frontend-project-lvl3

View on GitHub
.github/workflows/project-check.yml

Summary

Maintainability
Test Coverage
name: project-check
on:
  - push
  - pull_request

jobs:
  build:

    runs-on: ubuntu-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: Run NPM Install
        run: make install
        env:
          CI: true

      - name: Run Make Linter
        run: make lint