Skip to content

chore(bundle): remove CJS bundle since browsers cannot load them #25

chore(bundle): remove CJS bundle since browsers cannot load them

chore(bundle): remove CJS bundle since browsers cannot load them #25

Workflow file for this run

name: CI for Routine Checks
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v4.2.0
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: latest
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run checks
run: pnpm check
- name: Run test build
run: pnpm build