Skip to content

fix(notes): more proofreading #10

fix(notes): more proofreading

fix(notes): more proofreading #10

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup node.js
uses: actions/setup-node@v6
with:
node-version: 25
cache: 'npm'
- name: NPM clean install
run: npm ci
- name: Build static
run: npm run build
- name: Upload artifacts
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: build/
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4