Skip to content

Update README.md

Update README.md #23

Workflow file for this run

##########################################################################
# DO NOT DELETE OR EDIT THIS FILE #
# This file is automatically generated and used to run tests #
##########################################################################
name: hexlet-check
on:
push:
branches:
- '**'
tags:
- '**'
env:
CI: true
jobs:
build:
# The type of machine to run the job on
runs-on: ubuntu-latest
strategy:
# Node versions list
matrix:
node-version: [20.x]
steps:
# Checkout repository under GitHub workspace
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# Step's name
- name: Hexlet project check
uses: hexlet/project-action@release
# The Node.js version to configure
with:
hexlet-id: ${{ secrets.HEXLET_ID }}
node-version: ${{ matrix.node-version }}
- run: make install
- run: make lint
- run: make test
- name: Test & publish code coverage
# Publish code coverage on Code Climate
# https://github.com/paambaati/codeclimate-action
uses: paambaati/codeclimate-action@v5.0.0
# Add Code Climate secret key
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true