Skip to content

Bump the patch-minor group across 1 directory with 10 updates #29

Bump the patch-minor group across 1 directory with 10 updates

Bump the patch-minor group across 1 directory with 10 updates #29

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Check for build and type issues
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
# use astro check for issues
- name: Run Astro check
run: pnpm astro check
# ensure build works
- name: Run Astro build
run: pnpm build