Skip to content

Update sponsorship package availability: Platinum → 0, Gold → 1 #111

Update sponsorship package availability: Platinum → 0, Gold → 1

Update sponsorship package availability: Platinum → 0, Gold → 1 #111

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Astro check
run: pnpm astro check
- name: Prettier check
run: pnpm exec prettier --check src
- name: Build
run: pnpm build