Skip to content
This repository was archived by the owner on Jul 23, 2026. It is now read-only.

feat: update @bonsae/nrg to 0.11.0 #116

feat: update @bonsae/nrg to 0.11.0

feat: update @bonsae/nrg to 0.11.0 #116

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Install pnpm
uses: pnpm/action-setup@v4.1.0
with:
version: 10.11.0
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: tsc client
run: pnpm tsc:client
- name: tsc server
run: pnpm tsc:server
- name: Lint
run: pnpm lint
- name: Format Check
run: pnpm format:check
- name: Test
run: pnpm test
- name: Build
run: pnpm build