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

fix: upgrade react-dom from 18.2.0 to 18.3.1 #25

fix: upgrade react-dom from 18.2.0 to 18.3.1

fix: upgrade react-dom from 18.2.0 to 18.3.1 #25

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 }}