Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

fix: upgrade @types/node from 16.18.41 to 16.18.121 #27

fix: upgrade @types/node from 16.18.41 to 16.18.121

fix: upgrade @types/node from 16.18.41 to 16.18.121 #27

name: Client CICD Pipeline
on:
push:
branches: ["**"]
jobs:
testing-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/setup-node@v3
name: Set up latest version of Node
with:
node-version: latest
- name: Install CI dependencies
run: npm ci
- name: Run code coverage (coverage runs unit tests automatically)
run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}