Skip to content

Merge pull request #345 from noevidence1017/feat/industry-testimonial #239

Merge pull request #345 from noevidence1017/feat/industry-testimonial

Merge pull request #345 from noevidence1017/feat/industry-testimonial #239

Workflow file for this run

name: CI
on:
push:
branches: ['main', 'develop']
pull_request:
branches: ['main', 'develop']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run type-check
- name: Test
run: pnpm test
- name: Build Verification
run: pnpm run build