Skip to content

Migrate to proxy architecture with lazy loading and add CI #2

Migrate to proxy architecture with lazy loading and add CI

Migrate to proxy architecture with lazy loading and add CI #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run lint
run: yarn lint
- name: Build (TypeScript + Bundle)
run: yarn build:all