Skip to content

transform to a commonjs module #27

transform to a commonjs module

transform to a commonjs module #27

name: apps/hyparquet-demo
on:
push:
paths:
- 'apps/hyparquet-demo/**'
- '.github/workflows/ci_apps_hyparquet_demo.yml'
defaults:
run:
working-directory: ./apps/hyparquet-demo
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