Skip to content

Add funding information for Aloostor #5

Add funding information for Aloostor

Add funding information for Aloostor #5

Workflow file for this run

name: Astera CI Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
verify:
name: Typecheck, Test & Build Verification
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Verify Strict TypeScript Compilation
run: npm run typecheck
- name: Run Vitest Unit Test Suite
run: npm test
- name: Build Vite Production Bundle
run: npm run build