Skip to content

Do more renovate grouping #97

Do more renovate grouping

Do more renovate grouping #97

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Vitest
run: pnpm run test
- name: Run Astro check
run: pnpm run astro check
- name: Run Astro build
run: pnpm run build