Skip to content

fix: use correct format for summary #59

fix: use correct format for summary

fix: use correct format for summary #59

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 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 }}
- run: npm ci
- run: npm run lint
- name: Run the qualscan tool
run: |
npm install qualscan -g
qualscan --scripts
- name: Run the tests and generate coverage report
run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3