Skip to content

Update Check.test.tsx #4

Update Check.test.tsx

Update Check.test.tsx #4

Workflow file for this run

name: Setup and coverage bagde
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 8 in .github/workflows/setup.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
- 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 }}