Skip to content

Bump astro from 5.14.7 to 5.15.9 #60

Bump astro from 5.14.7 to 5.15.9

Bump astro from 5.14.7 to 5.15.9 #60

Workflow file for this run

name: Pull request workflow
on:
pull_request:
jobs:
lint:
name: Linting and formatting checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm format
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: pnpm
- run: pnpm install
- run: pnpm test:ci