Skip to content

chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /site #992

chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /site

chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /site #992

Workflow file for this run

name: site
on:
pull_request:
paths:
- ".github/workflows/site.yaml"
- "site/**"
push:
paths:
- ".github/workflows/site.yaml"
- "site/**"
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: site
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: ⚙️ Setup Node
uses: actions/setup-node@v6
with:
node-version: 20.x
cache: npm
cache-dependency-path: site/package-lock.json
- name: 📦 Install Dependencies
run: npm ci
- name: ✨ Check Format
run: npm run format:check
- name: 🧹 Lint
run: npm run lint
- name: 👷 Build website
run: npm run build