Skip to content

use the bundled file for ES module, with inlined worker #37

use the bundled file for ES module, with inlined worker

use the bundled file for ES module, with inlined worker #37

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
buildcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run build