Skip to content

Give the component the time to update #23

Give the component the time to update

Give the component the time to update #23

Workflow file for this run

name: CI in the components package
on:
push:
paths:
- 'packages/components/**'
- '.github/workflows/ci_components.yml'
defaults:
run:
working-directory: ./packages/components
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: tsc
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run coverage