Skip to content

chore: refactor bundler to be tsdown instead of microbundle #369

chore: refactor bundler to be tsdown instead of microbundle

chore: refactor bundler to be tsdown instead of microbundle #369

Workflow file for this run

name: PR Prettier Check
on:
pull_request:
branches:
- main
permissions:
pull-requests: read
jobs:
########### LINT PACKAGE ############
lint-package:
name: Lint Package
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: PNPM Install
uses: pnpm/action-setup@v4
with:
version: 10.28.2
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- run: corepack enable
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
- name: Prettier Check
if: ${{ always() }}
run: pnpm fmt.check