Skip to content

check for feature length #5

check for feature length

check for feature length #5

Workflow file for this run

name: Deploy
on:
workflow_dispatch: {}
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
pages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v4
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4