Skip to content

chore(deps): bump astro from 5.17.1 to 6.1.5 in /frontend/landing #206

chore(deps): bump astro from 5.17.1 to 6.1.5 in /frontend/landing

chore(deps): bump astro from 5.17.1 to 6.1.5 in /frontend/landing #206

Workflow file for this run

name: Frontend CI
on:
push:
branches: [main]
paths:
- 'frontend/**'
- '.github/workflows/ci-frontend.yml'
pull_request:
branches: [main]
paths:
- 'frontend/**'
- '.github/workflows/ci-frontend.yml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: frontend/app/pnpm-lock.yaml
- name: Install dependencies
run: cd frontend/app && pnpm install
- name: Run lint
run: cd frontend/app && pnpm lint
- name: Run type check
run: cd frontend/app && pnpm typecheck
- name: Run tests
run: cd frontend/app && pnpm test
- name: Build
run: cd frontend/app && pnpm build