Skip to content

feat: docs

feat: docs #645

Workflow file for this run

name: Tests
on: push
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20.9.0"
cache: "yarn"
- name: Install packages
run: yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Typecheck
run: yarn typecheck
- name: Clear Jest
run: yarn jest --clearCache
- name: Test
run: yarn test --coverage
- name: Send Report
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: c206a2ed5aa86c7480a13634e91e440a27a98a5d134653f8ea9a7d5f987e68c3
with:
coverageLocations: |
${{github.workspace}}/packages/core/coverage/lcov.info:lcov
${{github.workspace}}/packages/react/coverage/lcov.info:lcov