Skip to content

fix coverage bot so it updates initial coverage post #441

fix coverage bot so it updates initial coverage post

fix coverage bot so it updates initial coverage post #441

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '12', '10', '8']
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Clean Install
run: npm ci
- name: Linting Codebase
run: npm run lint
- name: Unit Testing
run: npm run test
- name: Building Artefacts
run: npm run build