Skip to content

implement HexletCode static method formFor #7

implement HexletCode static method formFor

implement HexletCode static method formFor #7

Workflow file for this run

name: tests
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: make install
- run: make test
- run: make lint
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true
coverageLocations: "${{github.workspace}}/coverage/clover.xml:clover"