Skip to content

Add configuration validation and refactor handling of unknown identif… #30

Add configuration validation and refactor handling of unknown identif…

Add configuration validation and refactor handling of unknown identif… #30

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:cover
- name: Report coverage
env:
CODECLIMATE_REPO_TOKEN: ${{ secrets.CODECLIMATE_REPO_TOKEN }}
run: npx codeclimate-test-reporter < coverage/lcov.info