Skip to content

chore(deps): bump astro 6.1.6 → 6.3.1 + @astrojs/svelte 8.0.4 → 8.1.0… #220

chore(deps): bump astro 6.1.6 → 6.3.1 + @astrojs/svelte 8.0.4 → 8.1.0…

chore(deps): bump astro 6.1.6 → 6.3.1 + @astrojs/svelte 8.0.4 → 8.1.0… #220

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: read-all
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm test
- name: Validate commit messages
if: github.event_name == 'pull_request'
continue-on-error: true
run: |
git fetch --depth=1 origin ${{ github.event.pull_request.base.sha }} 2>/dev/null || true
npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }}