Skip to content

Enhance no-renderer-packages rule documentation and implementation #268

Enhance no-renderer-packages rule documentation and implementation

Enhance no-renderer-packages rule documentation and implementation #268

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout codes
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Run Check
run: pnpm run check
- name: Run tests:unit
run: pnpm run test:unit
- name: Run tests:integration
run: pnpm run test:integration