Skip to content

feat: modularization and bundling enhancements #1026

feat: modularization and bundling enhancements

feat: modularization and bundling enhancements #1026

Workflow file for this run

name: Pull Request
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4.0.0
with:
version: 9.4.0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.15.0
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test