Skip to content

badge and some analytics components #1

badge and some analytics components

badge and some analytics components #1

Workflow file for this run

name: Setup and coverage bagde
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Packages
run: npm install
- name: Build
run: npm run build
test-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Packages
run: npm install
- name: Run Tests with Coverage
run: npm test -- --coverage
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}