Skip to content

Bump astro from 5.18.1 to 6.4.6 #237

Bump astro from 5.18.1 to 6.4.6

Bump astro from 5.18.1 to 6.4.6 #237

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm audit --prod --audit-level=high
continue-on-error: true
- run: pnpm build
- run: pnpm typecheck
- run: pnpm test
e2e:
runs-on: ubuntu-latest
needs: build-and-test
strategy:
fail-fast: false
matrix:
project: [vue-vite, react-vite]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: npx playwright install --with-deps chromium
- run: pnpm test:e2e --project=${{ matrix.project }}