Skip to content

release: v0.2.2

release: v0.2.2 #445

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: General checks, tests and coverage reporting
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Use Node.js 20.11.0
uses: actions/setup-node@v6
with:
node-version: 20.11.0
- name: Install dependencies
run: npm ci
- name: Perform ESLint check
run: npm run lint
- name: Perform Licenses check
run: npm run check-licenses
- name: Perform dependency check
run: npm run depcheck
- name: Perform build
run: npm run build-test
- name: Run unit tests
run: npm run coverage
- name: Send report to Coveralls
uses: coverallsapp/github-action@v2
continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down)