Skip to content

fix: update package.json to include repository and bugs fields for be… #1

fix: update package.json to include repository and bugs fields for be…

fix: update package.json to include repository and bugs fields for be… #1

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Test Client-side Rendering
run: pnpm test:client
- name: Test Server-side Rendering
run: pnpm test:ssr