antlu/project-lvl2-s463

View on GitHub
.github/workflows/continuous-integration.yml

Summary

Maintainability
Test Coverage
name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
        with:
          node-version: '13'
      - name: Install dependencies
        run: make install
      - name: Run code style checks
        run: make lint
      - name: Run tests and publish code coverage
        uses: paambaati/codeclimate-action@v2.6.0
        env:
          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
        with:
          coverageCommand: make test-coverage