Skip to content

Add GitHub Pages site with SEO and project icon #21

Add GitHub Pages site with SEO and project icon

Add GitHub Pages site with SEO and project icon #21

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- beta
push:
branches:
- main
- beta
workflow_dispatch:
jobs:
validate:
name: Validate on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22, 24]
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Smoke-load release config
run: npm run test:config
- name: Check docs index
run: npm run docs:index:check
semantic-release-dry-run:
name: semantic-release dry run
runs-on: ubuntu-latest
needs: validate
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Run semantic-release in dry-run mode
run: npm run release:dry-run