Skip to content

2.2.2

2.2.2 #217

Workflow file for this run

name: CI
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- uses: actions/checkout@v2
# Install Node 12
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 18
# Install dependencies
- name: Install dependencies
run: npm install --legacy-peer-deps
# Run tests
- name: Run test and generate coverage report
run: npm run test:coverage
# Upload test to codecov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}